void-packages/srcpkgs/nodejs/template

39 lines
1 KiB
Bash
Raw Normal View History

2011-12-23 08:22:16 +00:00
# Template file for 'nodejs'
pkgname=nodejs
2015-04-01 21:18:23 +00:00
version=0.12.2
2015-03-24 06:19:15 +00:00
revision=1
2012-06-30 17:57:51 +00:00
wrksrc=node-v${version}
hostmakedepends="pkg-config python"
makedepends="libressl-devel zlib-devel python-devel libuv-devel"
depends="python"
2011-12-23 08:22:16 +00:00
short_desc="Evented I/O for V8 javascript"
2014-05-02 06:08:37 +00:00
maintainer="Juan RP <xtraeme@gmail.com>"
2011-12-23 08:22:16 +00:00
license="MIT"
2012-06-30 17:57:51 +00:00
homepage="http://nodejs.org/"
distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
2015-04-01 21:18:23 +00:00
checksum=ac7e78ade93e633e7ed628532bb8e650caba0c9c33af33581957f3382e2a772d
2012-11-28 17:09:33 +00:00
2013-03-18 08:11:41 +00:00
do_configure() {
local _args
2013-03-18 08:11:41 +00:00
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
2015-03-05 09:50:27 +00:00
./configure --prefix=/usr --openssl-use-sys --shared-zlib --shared-libuv ${_args}
2013-03-18 08:11:41 +00:00
}
do_build() {
if [ "$CROSS_BUILD" ]; then
make LD="$CXX" ${makejobs} PORTABLE=1 V=1
else
make LD="$CXX" ${makejobs} V=1
fi
2013-03-18 08:11:41 +00:00
}
do_install() {
make LD="$CXX" DESTDIR="$DESTDIR" install
2015-02-08 08:30:04 +00:00
vlicense LICENSE
2011-12-23 08:22:16 +00:00
}