summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0b26ea135947ce419b0a96fbd89b17e09f75a0ca (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
_npmname=textlint-plugin-review
_npmver=0.3.3
pkgname=textlint-plugin-review # All lowercase
pkgver=0.3.3
pkgrel=1
pkgdesc="textlint Re:VIEW processsor plugin."
arch=(any)
url="https://github.com/orangain/textlint-plugin-review"
license=()
depends=('nodejs' 'npm' )
optdepends=()
source=(http://registry.npmjs.org/$_npmname/-/$_npmname-$_npmver.tgz)
noextract=($_npmname-$_npmver.tgz)
sha1sums=(7575aeb562fcdf7597e14f55230b805cec735eb8)

package() {
  cd $srcdir
  local _npmdir="$pkgdir/usr/lib/node_modules/"
  mkdir -p $_npmdir
  cd $_npmdir
  npm install -g --prefix "$pkgdir/usr" $_npmname@$_npmver
}

# vim:set ts=2 sw=2 et: