28 lines
819 B
Bash
28 lines
819 B
Bash
# Template file for 'yarn-bin'
|
|
pkgname=yarn-bin
|
|
version=1.22.4
|
|
revision=1
|
|
depends="virtual?nodejs-runtime"
|
|
short_desc="Fast, reliable, and secure dependency management - precompiled binaries"
|
|
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://yarnpkg.com/"
|
|
distfiles="https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz"
|
|
checksum=bc5316aa110b2f564a71a3d6e235be55b98714660870c5b6b2d2d3f12587fb58
|
|
conflicts="yarn>=0"
|
|
|
|
do_extract() {
|
|
bsdtar 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/cli.js /usr/lib/yarn
|
|
vbin bin/yarn.js yarn
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|