mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-11-15 13:25:06 -05:00
15 lines
321 B
Bash
15 lines
321 B
Bash
|
# Maintainer: farwayer <farwayer@gmail.com>
|
||
|
pkgname=react-native-cli
|
||
|
pkgver=2.0.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="The React Native CLI tools"
|
||
|
arch=(any)
|
||
|
url="http://facebook.github.io/react-native/"
|
||
|
license=('BSD-3-Clause')
|
||
|
depends=('nodejs')
|
||
|
makedepends=('npm')
|
||
|
|
||
|
package() {
|
||
|
npm install -g --prefix "$pkgdir/usr" $pkgname@$pkgver
|
||
|
}
|