archlinux-pkgbuilds/nodejs-clean-css/PKGBUILD

28 lines
930 B
Bash
Raw Normal View History

# Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
# Contributor: Mario Finelli <mario at finel dot li>
2015-07-16 03:23:55 +02:00
_npmname=clean-css
pkgname=nodejs-$_npmname
pkgver=5.3.2
pkgrel=1
2015-07-16 03:23:55 +02:00
pkgdesc="A fast, efficient, and well tested CSS minifier for node.js."
arch=('any')
url="https://github.com/jakubpawlowicz/clean-css"
license=('MIT')
2018-02-28 13:43:26 +01:00
depends=('nodejs')
makedepends=('npm')
2015-07-16 03:23:55 +02:00
source=(https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz)
noextract=($_npmname-$pkgver.tgz)
sha256sums=('21902cbf7f324737baac037b9676f85dc40e533bf1a2a64d66af81b6988a8fbc')
2015-07-16 03:23:55 +02:00
package() {
npm install -g --prefix "$pkgdir/usr" --cache "${srcdir}/npm-cache" "$srcdir"/$_npmname-$pkgver.tgz
# npm installs package.json owned by build user
# https://bugs.archlinux.org/task/63396
chown -R root:root "$pkgdir"
2018-02-28 13:43:26 +01:00
install -Dm0644 "$pkgdir/usr/lib/node_modules/$_npmname/LICENSE" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2015-07-16 03:23:55 +02:00
}