summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 573a31b27d25920c00229cd8bd143b233c20ab14 (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>

pkgname=zx
pkgver=2.0.0
_commit=cf31d2e03960a9e6a0a89bac181253a8803113d2
pkgrel=1
pkgdesc="A tool for writing better scripts"
arch=("any")
url="https://github.com/google/zx"
license=("Apache")
depends=("nodejs")
makedepends=("npm" "git")
source=("git+${url}#commit=${_commit}")
sha512sums=("SKIP")

build() {
	cd ${pkgname}
	npm install --production
}

package() {
	cd ${pkgname}

	local _npmdir="${pkgdir}/usr/lib/node_modules"
	install -d "${_npmdir}/${pkgname}"
	cp -r * "${_npmdir}/${pkgname}"

	local _bindir="${pkgdir}/usr/bin"
	mkdir -p "${_bindir}"
	ln -s "/usr/lib/node_modules/${pkgname}/zx.mjs" "${_bindir}/zx"

	install -Dm644 LICENSE "${pkgdir}/usr/share/license/${pkgname}/LICENSE"
}

# vim: syntax=sh