iojs: update to 1.6.2.
This commit is contained in:
parent
7dccb4a166
commit
d7b0f04fe1
|
@ -0,0 +1,40 @@
|
|||
# Template file for 'iojs'
|
||||
pkgname=iojs
|
||||
version=1.6.2
|
||||
revision=1
|
||||
wrksrc=iojs-v${version}
|
||||
hostmakedepends="pkg-config python"
|
||||
makedepends="libressl-devel>=2.1.4 zlib-devel python-devel libuv-devel"
|
||||
depends="python"
|
||||
short_desc="Evented I/O for V8 javascript"
|
||||
maintainer="Enno Boland <eb@s01.de>"
|
||||
license="MIT"
|
||||
homepage="http://iojs.org/"
|
||||
distfiles="${homepage}/dist/v${version}/${pkgname}-v${version}.tar.gz"
|
||||
checksum=ea537c47a46a15fdae0eab884a7c8f947905bd0cadc3b0d3ca4dbc51fe4afb5f
|
||||
provides="nodejs-0.12.1_1"
|
||||
conflicts="nodejs>=0"
|
||||
|
||||
do_configure() {
|
||||
local _args
|
||||
|
||||
export LD="$CXX"
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
arm*) _args="--dest-cpu=arm --without-snapshot" ;;
|
||||
*) msg_error "$pkgver: cannot be cross compiled for ${XBPS_TARGET_MACHINE}\n" ;;
|
||||
esac
|
||||
fi
|
||||
./configure --prefix=/usr --openssl-use-sys --shared-zlib --shared-libuv ${_args}
|
||||
}
|
||||
do_build() {
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
make LD="$CXX" ${makejobs} PORTABLE=1 V=1
|
||||
else
|
||||
make LD="$CXX" ${makejobs} V=1
|
||||
fi
|
||||
}
|
||||
do_install() {
|
||||
make LD="$CXX" DESTDIR="$DESTDIR" install
|
||||
vlicense LICENSE
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
pattern='iojs-v\K[\d.]+(?=\.tar)'
|
Loading…
Reference in New Issue