arch-pkgs/homebridge-platform-orbit/PKGBUILD

38 lines
1.3 KiB
Bash

# Maintainer: George Rawlinson <george@rawlinson.net.nz>
pkgname=homebridge-platform-orbit
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")
sha512sums=('0b23610b49ae38966645a7974c7f2050d87591784ee9fcb880d6ce9fa26d022713f973106168db40524ac72e1930fce2792bdc5d09dff5089bc7b1102f48d141')
b2sums=('49972f8b923ee5700bfcecd51039b5c96c54ab2b691c008f852b8f99171ff64e941d3cbf2ee90da399401677cd8fd16e46635cd3c7e2247df3f6ef4d57b3816b')
package() {
local NPM_FLAGS=(--no-audit --no-fund --no-update-notifier)
npm install \
--global \
--prefix "$pkgdir/usr" \
"${NPM_FLAGS[@]}" \
"$pkgname-$pkgver.tar.gz"
# 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"
}