void-packages/srcpkgs/yarn/template
Sora Morimoto 58b7935734 yarn: update to 1.22.10
Signed-off-by: Sora Morimoto <sora@morimoto.io>
2020-10-25 17:34:59 +01:00

35 lines
816 B
Bash

# Template file for 'yarn'
pkgname=yarn
version=1.22.10
revision=1
hostmakedepends="yarn-bin nodejs tar"
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=66153f5fdd3078ce320c775990e4b4f03d5b596186f0e1fbceb34225abe3cd3e
conflicts="yarn-bin>=0"
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
}