]> git.immae.eu Git - perso/Immae/Config/AUR.git/blob - PKGBUILD
ea7bc9333845508a99fa7f7651332e36ac0b9bc4
[perso/Immae/Config/AUR.git] / PKGBUILD
1 # Maintainer : Immae <ismael.bouya@normalesup.org>
2
3 _npmname=npm-cache
4 pkgname=nodejs-$_npmname
5 pkgver=0.6.0
6 pkgrel=1
7 pkgdesc="A command line utility that caches dependencies installed via npm."
8 arch=('any')
9 url="https://github.com/swarajban/npm-cache"
10 license=('MIT')
11 depends=('nodejs' 'npm')
12 source=(https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz)
13 noextract=($_npmname-$pkgver.tgz)
14 sha256sums=('7ccb27a7bc5752bf68c74c52e531868012e7a85bfe32a00b97dd32870e633b90')
15 options=('!emptydirs')
16
17 package() {
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 }