Add 'nodejs-clean-css/' from commit '05dd0576c1a937f1fcd9c4164e96d49e74b3ed9e'

git-subtree-dir: nodejs-clean-css
git-subtree-mainline: 500fd08785
git-subtree-split: 05dd0576c1
This commit is contained in:
Cedric Girard 2021-05-15 18:16:17 +02:00
commit e52c46a5da
3 changed files with 46 additions and 0 deletions

15
nodejs-clean-css/.SRCINFO Normal file
View File

@ -0,0 +1,15 @@
pkgbase = nodejs-clean-css
pkgdesc = A fast, efficient, and well tested CSS minifier for node.js.
pkgver = 4.2.1
pkgrel = 1
url = https://github.com/jakubpawlowicz/clean-css
arch = any
license = MIT
makedepends = npm
depends = nodejs
noextract = clean-css-4.2.1.tgz
source = https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz
sha256sums = 60b2c9d633fd0843d6eef91fce82b81258d762b0d1bec6ccea7edb275c0ba32f
pkgname = nodejs-clean-css

4
nodejs-clean-css/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*
!.gitignore
!PKGBUILD
!.SRCINFO

27
nodejs-clean-css/PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Maintainer: Mario Finelli <mario at finel dot li>
_npmname=clean-css
pkgname=nodejs-$_npmname
pkgver=4.2.1
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')
depends=('nodejs')
makedepends=('npm')
source=(https://registry.npmjs.org/$_npmname/-/$_npmname-$pkgver.tgz)
noextract=($_npmname-$pkgver.tgz)
sha256sums=('60b2c9d633fd0843d6eef91fce82b81258d762b0d1bec6ccea7edb275c0ba32f')
package() {
npm install \
--user root --global \
--prefix "$pkgdir/usr" \
"$srcdir"/$_npmname-$pkgver.tgz
find "$pkgdir/usr" -type d -exec chmod 755 '{}' +
install -Dm0644 "$pkgdir/usr/lib/node_modules/$_npmname/LICENSE" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}