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

pkgname=zx
pkgver=2.1.0
_commit=ef80b844c74525219536071bab0fd5a6d19bb345
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