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

33 lines
725 B
Bash

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