diff options
Diffstat (limited to '~emulatorman/nodejs-grunt/PKGBUILD')
-rw-r--r-- | ~emulatorman/nodejs-grunt/PKGBUILD | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/~emulatorman/nodejs-grunt/PKGBUILD b/~emulatorman/nodejs-grunt/PKGBUILD deleted file mode 100644 index fea5c6ae2..000000000 --- a/~emulatorman/nodejs-grunt/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# Author: "Cowboy" Ben Alman (http://benalman.com/) -# Contributor: "Cowboy" Ben Alman (http://benalman.com/) -# Contributor: Kyle Robinson Young (http://dontkry.com/) -# Contributor: Tyler Kellen (http://goingslowly.com) -# Contributor: Sindre Sorhus (http://sindresorhus.com) -# Contributor: cowboy <cowboy@rj3.net> -# Contributor: tkellen <tyler@sleekcode.net> -# Maintainer: cracoucass14 (http://twitter.com/cracoucass14) - -_npmname=grunt -pkgname=nodejs-grunt # All lowercase -pkgver=0.4.2 -pkgrel=1 -pkgdesc="The JavaScript Task Runner" -arch=(any) -url="http://gruntjs.com/" -license=(MIT) -depends=('nodejs') -optdepends=() -source=(http://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz) -noextract=($_npmname-$pkgver.tgz) -sha1sums=(895b4f28a6102bffd41d365a65e8be2d6a293d93) - -package() { - cd $srcdir - local _npmdir="$pkgdir/usr/lib/node_modules/" - mkdir -p $_npmdir - cd $_npmdir - npm install -g --prefix "$pkgdir/usr" $_npmname@$pkgver -} |