1172cad11a
closes #10600
39 lines
953 B
Bash
39 lines
953 B
Bash
# Template file for 'yarn'
|
|
pkgname=yarn
|
|
version=1.15.2
|
|
revision=2
|
|
hostmakedepends="yarn-bin nodejs"
|
|
depends="virtual?nodejs-runtime"
|
|
short_desc="Fast, reliable, and secure dependency management"
|
|
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://yarnpkg.com/"
|
|
distfiles="https://github.com/yarnpkg/${pkgname}/archive/v${version}.tar.gz"
|
|
checksum=8a08d62cdbd141d5edd127646ecccc6ed107f20e98ba4cb37c072aabb82f6e24
|
|
|
|
conflicts="yarn-bin>=0"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*) broken="https://build.voidlinux.org/builders/i686_builder/builds/15057/steps/shell_3/logs/stdio"
|
|
esac
|
|
|
|
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
|
|
ln -rs ${DESTDIR}/usr/bin/yarn ${DESTDIR}/usr/bin/yarnpkg
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|