void-packages/srcpkgs/yarn-bin/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

29 lines
820 B
Bash

# Template file for 'yarn-bin'
pkgname=yarn-bin
version=1.22.10
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=7e433d4a77e2c79e6a7ae4866782608a8e8bcad3ec6783580577c59538381a6e
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
}