archlinux-pkgbuilds/PKGBUILD

29 lines
814 B
Bash
Raw Normal View History

2018-02-28 13:43:26 +01:00
# Maintainer: Mario Finelli <mario at finel dot li>
2015-07-16 03:23:55 +02:00
_npmname=clean-css
pkgname=nodejs-$_npmname
2018-02-28 13:43:26 +01:00
pkgver=4.1.9
2015-07-16 03:23:55 +02:00
pkgrel=1
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)
2018-02-28 13:43:26 +01:00
sha256sums=('a474469c4af681b798f5e9a6e97c1309a3124ad333e4e6f562ab8b3f8f19e04d')
2015-07-16 03:23:55 +02:00
package() {
2018-02-28 13:43:26 +01:00
npm install \
--user root --global \
--prefix "$pkgdir/usr" \
"$srcdir"/$_npmname-$pkgver.tgz
rm -r "$pkgdir"/usr/etc
find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
install -Dm0644 "$pkgdir/usr/lib/node_modules/$_npmname/LICENSE" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2015-07-16 03:23:55 +02:00
}