# Maintainer: Simon Legner # Contributor: George Rawlinson pkgname=rollup pkgver=2.69.0 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=('923111f75b47c9e93c80092ecfbfb9e7cbd29d343ea484c4a24d4fd1a34e4b8e595f29e06aa3ec5c99927a5e103d09c9a3b1093235d4535fc612b5a45a228e46') b2sums=('458058ff677975ad8e024bcccf17d0164b992f2d53936d68e3d896071644cb4bee7e7e2a7c8aeef97071f9009d4ec4212c25bc09378521dbd5b2c98b4e17de4d') 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" }