33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
# Maintainer: George Rawlinson <george@rawlinson.net.nz>
|
|
|
|
pkgname=nodejs-homebridge-platform-orbit
|
|
_pkgname="${pkgname#nodejs-}"
|
|
pkgver=1.5.1
|
|
pkgrel=1
|
|
pkgdesc="Homebridge plugin for Orbit Irrigation System"
|
|
arch=('any')
|
|
url="https://github.com/MortJC/homebridge-platform-orbit"
|
|
license=('MIT')
|
|
depends=('homebridge')
|
|
makedepends=('npm')
|
|
options=('!strip')
|
|
source=("$_pkgname-$pkgver.tar.gz::https://registry.npmjs.org/$_pkgname/-/$_pkgname-$pkgver.tgz")
|
|
noextract=("$_pkgname-$pkgver.tar.gz")
|
|
b2sums=('49972f8b923ee5700bfcecd51039b5c96c54ab2b691c008f852b8f99171ff64e941d3cbf2ee90da399401677cd8fd16e46635cd3c7e2247df3f6ef4d57b3816b')
|
|
|
|
package() {
|
|
local NPM_FLAGS=(--no-audit --no-fund --no-update-notifier)
|
|
|
|
npm install --global --prefix "$pkgdir/usr" "$_pkgname-$pkgver.tar.gz" "${NPM_FLAGS[@]}"
|
|
|
|
# Non-deterministic race in npm gives 777 permissions to random directories
|
|
# See https://github.com/npm/cli/issues/1103 for details
|
|
find "$pkgdir/usr" -type d -exec chmod 755 {} +
|
|
|
|
# npm gives ownership of ALL FILES to build user
|
|
# https://bugs.archlinux.org/task/63396
|
|
chown -R root:root "$pkgdir"
|
|
|
|
install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" \
|
|
"$pkgdir/usr/lib/node_modules/$_pkgname/LICENSE"
|
|
}
|