# Maintainer: Simon Legner # Contributor: George Rawlinson pkgname=rollup pkgver=2.64.0 pkgrel=1 pkgdesc="Next-generation ES6 module bundler" arch=(any) url="https://rollupjs.org/" license=('MIT' 'ISC') depends=('nodejs') makedepends=('npm' 'jq') source=("$pkgname-$pkgver.tar.gz::https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz") noextract=("$pkgname-$pkgver.tar.gz") sha512sums=('f9cfa56f0d657b104a48c6f5cb118355f27ebdc8491f7a8b6e66af47e6b00e29d30c0d82e5483dbbb9643b38fad920aed0f294131b16dfab69816ec59a99f7c9') b2sums=('76e96d4732c614fb4529d5c6d928f18a60606ac280b2cfac1288e5e5ebc4715c6dfedd535e40c6bab3c83000cce5ff1103416dde055120e088aff1399cdb008a') package() { local NPM_FLAGS=(--no-audit --no-fund --no-update-notifier) npm install \ --global \ --prefix "$pkgdir/usr" \ --cache "$srcdir/npm-cache" \ "${NPM_FLAGS[@]}" \ "$pkgname-$pkgver.tar.gz" # install licenses install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" \ "$pkgdir/usr/lib/node_modules/rollup/LICENSE.md" # install documentation install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" \ "$pkgdir/usr/lib/node_modules/rollup/"{CHANGELOG,README}.md # remove references to ${src,pkg}dir local tmppackage="$(mktemp)" local pkgjson="$pkgdir/usr/lib/node_modules/$pkgname/package.json" jq '.|=with_entries(select(.key|test("_.+")|not))' "$pkgjson" > "$tmppackage" mv "$tmppackage" "$pkgjson" chmod 644 "$pkgjson" # npm gives ownership of ALL FILES to build user # https://bugs.archlinux.org/task/63396 chown -R root:root "$pkgdir" }