33 lines
750 B
Bash
33 lines
750 B
Bash
# Template file for 'yarn'
|
|
pkgname=yarn
|
|
version=1.13.0
|
|
revision=1
|
|
hostmakedepends="yarn-bin nodejs"
|
|
depends="virtual?nodejs-runtime"
|
|
short_desc="Fast, reliable, and secure dependency management"
|
|
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
|
|
license="2-cause-BSD"
|
|
homepage="https://yarnpkg.com/"
|
|
distfiles="https://github.com/yarnpkg/${pkgname}/archive/v${version}.tar.gz"
|
|
conflicts="yarn-bin>=0"
|
|
checksum=3bb516636ff6bf88fb1fd0423403526e8c56695b3d9ac810f0be1ff4c9fd74c4
|
|
|
|
pre_build() {
|
|
yarn
|
|
}
|
|
|
|
do_build() {
|
|
yarn run build-dist
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir /usr/lib/yarn
|
|
vmkdir /usr/bin
|
|
vcopy dist/lib/v8-compile-cache.js /usr/lib/yarn
|
|
vcopy dist/lib/cli.js /usr/lib/yarn
|
|
vbin dist/bin/yarn.js yarn
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|