blob: 59dc7f0b7abea97f6155fc4ceff975dace0fc876 (
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
27
28
29
30
31
32
33
34
35
36
|
# Maintainer: Dušan Simić <dusan.simic1810@gmail.com>
# Contributor: Alex D'Andrea <alex at dandrea dot io>
pkgname=zx
pkgver=8.1.9
_commit=c3061ab1333a3b7b25cc8095489357e332fd4b94 # tags/8.1.9
pkgrel=1
pkgdesc='A tool for writing better scripts'
arch=(any)
url=https://github.com/google/zx
license=(Apache-2.0)
depends=('nodejs>=16')
makedepends=(npm git)
source=("git+$url.git#commit=$_commit")
sha256sums=('92ee7bfd9b3e88267f7135e69f00603fee8a7d6575dd9e750212d10efb4aa042')
build() {
cd "$pkgname"
npm install --cache "$srcdir/npm-cache"
npm run build
}
package() {
cd "$pkgname"
local _npmdir="$pkgdir/usr/lib/node_modules"
install -d "$_npmdir/$pkgname"
cp -r build/ package.json "$_npmdir/$pkgname"
mkdir -p "$pkgdir/usr/bin"
ln -s "$(realpath -m --relative-to=/usr/bin /usr/lib/node_modules/$pkgname/build/cli.js)" "$pkgdir/usr/bin/zx"
chmod 0755 "$pkgdir/usr/bin/zx"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|