49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# Template file for 'nodejs'
|
|
pkgname=nodejs
|
|
version=0.12.6
|
|
revision=1
|
|
wrksrc=node-v${version}
|
|
hostmakedepends="pkg-config python"
|
|
makedepends="zlib-devel python-devel
|
|
$(vopt_if ssl libressl-devel) $(vopt_if libuv libuv-devel)
|
|
$(vopt_if http_parser http-parser-devel)"
|
|
depends="python"
|
|
short_desc="Evented I/O for V8 javascript"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="MIT"
|
|
homepage="http://nodejs.org/"
|
|
distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
|
|
checksum=7a3b5ac351973a9dee8edbf0684bc8d0dea44b231e42274ffb008141ffa19ad2
|
|
|
|
build_options="ssl libuv http_parser"
|
|
desc_option_libuv="Enable shared libuv"
|
|
desc_option_http_parser="Enable shared http-parser"
|
|
|
|
build_options_default="ssl libuv http_parser"
|
|
|
|
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 --shared-zlib \
|
|
$(vopt_if http_parser --shared-http-parser) \
|
|
$(vopt_if ssl --openssl-use-sys) \
|
|
$(vopt_if libuv --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
|
|
}
|