void-packages/srcpkgs/yarn-bin/template
Michael Aldridge 902807f15e <various>: reassign package ownership from kulinacs to maldridge
@kulinacs has requested to orphan all currently owned packages
in #9542.  This commit reassigns all packages affected to
@the-maldridge.

[skip ci]

Closes: #9544 [via git-merge-pr]
2017-11-25 23:53:58 -08:00

28 lines
797 B
Bash

# Template file for 'yarn-bin'
pkgname=yarn-bin
version=1.3.2
revision=1
depends="nodejs"
short_desc="Fast, reliable, and secure dependency management - precompiled binaries"
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
license="2-cause-BSD"
homepage="https://yarnpkg.com/"
distfiles="https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz"
conflicts="yarn>=0"
checksum=6cfe82e530ef0837212f13e45c1565ba53f5199eec2527b85ecbcd88bf26821d
do_extract() {
tar 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
}