28 lines
804 B
Bash
28 lines
804 B
Bash
# Template file for 'yarn-bin'
|
|
pkgname=yarn-bin
|
|
version=0.28.4
|
|
revision=1
|
|
depends="nodejs"
|
|
short_desc="Fast, reliable, and secure dependency management - precompiled binaries"
|
|
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
|
license="2-cause-BSD"
|
|
homepage="https://yarnpkg.com/"
|
|
distfiles="https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz"
|
|
conflicts="yarn>=0"
|
|
checksum=057ef781107bb5d3e7a2a655d75054fbeb265a249a905375bc25bec10d42b31f
|
|
|
|
do_extract() {
|
|
tar xfz ${XBPS_SRCDISTDIR}/${pkgname}-${version}/yarn-v${version}.tar.gz --strip-components=1 -C ${wrksrc}
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir /usr/lib/yarn
|
|
vmkdir /usr/bin
|
|
vcopy lib/v8-compile-cache.js /usr/lib/yarn
|
|
vcopy lib/yarn-cli.js /usr/lib/yarn
|
|
vbin bin/yarn.js yarn
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|