mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-01 10:22:56 +02:00
New Package: yarn-bin-0.27.5
This commit is contained in:
parent
58ac9f0ccb
commit
5b5f162b43
2 changed files with 38 additions and 0 deletions
10
srcpkgs/yarn-bin/patches/yarn.patch
Normal file
10
srcpkgs/yarn-bin/patches/yarn.patch
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
--- bin/yarn.js.orig 2017-07-04 18:50:29.701379167 -0500
|
||||||
|
+++ bin/yarn.js 2017-07-04 17:27:32.749746288 -0500
|
||||||
|
@@ -3,5 +3,5 @@
|
||||||
|
/* eslint-disable flowtype/require-valid-file-annotation */
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
-require('../lib/v8-compile-cache');
|
||||||
|
-module.exports = require('../lib/yarn-cli');
|
||||||
|
+require('/usr/lib/yarn/v8-compile-cache');
|
||||||
|
+module.exports = require('/usr/lib/yarn/yarn-cli');
|
28
srcpkgs/yarn-bin/template
Normal file
28
srcpkgs/yarn-bin/template
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# Template file for 'yarn-bin'
|
||||||
|
pkgname=yarn-bin
|
||||||
|
version=0.27.5
|
||||||
|
revision=1
|
||||||
|
depends="nodejs"
|
||||||
|
short_desc="Fast, reliable, and secure dependency management - precompiled binaries"
|
||||||
|
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||||
|
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=f0f3510246ee74eb660ea06930dcded7b684eac2593aa979a7add84b72517968
|
||||||
|
|
||||||
|
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/yarn-cli.js /usr/lib/yarn
|
||||||
|
vbin bin/yarn.js yarn
|
||||||
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
vlicense LICENSE
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue