# Maintainer: Simon Legner # Contributor: George Rawlinson pkgname=rollup pkgver=2.67.1 pkgrel=1 pkgdesc="Next-generation ES6 module bundler" arch=(any) url="https://rollupjs.org/" license=('MIT') depends=('nodejs') makedepends=('npm' 'jq') source=("$pkgname-$pkgver.tar.gz::https://registry.npmjs.org/$pkgname/-/$pkgname-$pkgver.tgz") noextract=("$pkgname-$pkgver.tar.gz") sha512sums=('d526dcb383ae5be683fa186aa48465f91aa8a08a45eae41c7f353f41223bbc693000363a70ce222ec04644cd8218b5c34c3379cbfc928688459a729e8123d6ce') b2sums=('e11371e2f8fe9127582cd5975ba1f109fd1f6a4170d27cf642f17a5fe7204cc11640b36d8fc8aa25a65620d6a340611f38a569ebab761a523620baa063fb4b27') 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" }