summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 30e82be24555e1a530d6c2e6f5a6b095ed7730bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer Cookie Engineer <cookiengineer@protonmail.ch>

_npmname=mdncomp
_npmver=2.5.0
pkgname=nodejs-mdncomp # All lowercase
pkgver=2.5.0
pkgrel=1
pkgdesc="MDN Browser Compatibility Data (BCD) on the command line"
arch=(any)
url=https://github.com/epistemex/mdncomp
license=( "MIT" )
depends=('nodejs')
options=('!emptydirs')
source=(http://registry.npmjs.org/$_npmname/-/$_npmname-$_npmver.tgz)
sha256sums=('50f03a52e4254a17de7aa6f81d9bd0a0f56bad7c6475cab7a524897c3e958718')
noextract=($_npmname-$_npmver.tgz)

package() {
  cd "$srcdir";
  local _npmdir="$pkgdir/usr/lib/node_modules/";
  mkdir -p "$_npmdir";
  cd "$_npmdir";
  npm install --user root -g --prefix "$pkgdir/usr" --ignore-scripts "$_npmname@$_npmver";
  $pkgdir/usr/bin/mdncomp --fupdate;
}