void-packages/srcpkgs/iojs/template
Juan RP 1c5f4690e6 xbps-src: always require current srcpkgs version in build dependencies.
That means that version comparators are not supported anymore in
hostmakedepends and makedepends.

This will ensure that a pkg is always built with the same build dependencies
everywhere, if the srcpkgs tree is uptodate.
2015-03-27 10:59:58 +01:00

41 lines
1.1 KiB
Bash

# Template file for 'iojs'
pkgname=iojs
version=1.6.2
revision=1
wrksrc=iojs-v${version}
hostmakedepends="pkg-config python"
makedepends="libressl-devel 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
}