2021-05-15 18:20:45 +02:00
|
|
|
# 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
|
2021-12-06 10:34:11 +01:00
|
|
|
pkgver=5.2.2
|
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)
|
2021-12-06 10:34:11 +01:00
|
|
|
sha256sums=('4eedbac6e7157bdd6d0879770359d8d29260cf453564e3dcae098b9413a4b324')
|
2015-07-16 03:23:55 +02:00
|
|
|
|
|
|
|
package() {
|
2021-05-15 18:20:45 +02:00
|
|
|
npm install -g --prefix "$pkgdir/usr" "$srcdir"/$_npmname-$pkgver.tgz
|
2018-02-28 13:43:26 +01:00
|
|
|
|
2021-05-15 18:20:45 +02:00
|
|
|
# Non-deterministic race in npm gives 777 permissions to random directories.
|
|
|
|
# See https://github.com/npm/npm/issues/9359 for details.
|
|
|
|
chmod -R u=rwX,go=rX "$pkgdir"
|
|
|
|
|
|
|
|
# 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
|
|
|
}
|