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

38 lines
1 KiB
Bash

# Template file for 'nodejs'
pkgname=nodejs
version=0.12.1
revision=1
wrksrc=node-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="Juan RP <xtraeme@gmail.com>"
license="MIT"
homepage="http://nodejs.org/"
distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
checksum=30693376519c9736bcb22d44513252aee1d9463d78ac6c744ecb6d13fd91d680
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
}