blob: 4273dff626d9e8f7436c59ba5d194fd8ba4feb46 (
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
|
# Maintainer: Dušan Simić <dusan.simic1810@gmail.com>
# Contributor: Alex D'Andrea <alex at dandrea dot io>
pkgname=zx
pkgver=8.2.4
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#tag=$pkgver")
sha256sums=('1036629759a54fe6aa796e25bc9f57fcf8f03c7fe8b60fdcc5cae1cb51f1a850')
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"
}
|