]> git.immae.eu Git - perso/Immae/Config/AUR.git/blame - PKGBUILD
Upgrade to 0.5.4
[perso/Immae/Config/AUR.git] / PKGBUILD
CommitLineData
3b023a29
IB
1# Maintainer : Immae <ismael.bouya@normalesup.org>
2
3_npmname=npm-cache
4pkgname=nodejs-$_npmname
fc21b095 5pkgver=0.5.4
3b023a29
IB
6pkgrel=1
7pkgdesc="A command line utility that caches dependencies installed via npm."
8arch=('any')
9url="http://gruntjs.com/"
10license=('MIT')
11depends=('nodejs' 'npm')
12source=(https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz)
13noextract=($_npmname-$pkgver.tgz)
fc21b095 14sha256sums=('0f3261b5185fd10dc247f01746321e7f130eb76f4e9e3f70a554d8014bff0510')
3b023a29
IB
15options=('!emptydirs')
16
17package() {
18 local _npmdir="$pkgdir/usr/lib/node_modules/"
19 mkdir -p "$_npmdir"
20 cd "$_npmdir"
21
22 npm install --user root -g --prefix "$pkgdir/usr" $_npmname@$pkgver
23}