void-packages/srcpkgs/iojs/template

53 lines
1.5 KiB
Bash
Raw Normal View History

2015-03-25 12:25:32 +00:00
# Template file for 'iojs'
pkgname=iojs
2015-07-05 07:06:39 +00:00
version=2.3.3
2015-03-25 12:25:32 +00:00
revision=1
wrksrc=iojs-v${version}
hostmakedepends="pkg-config python"
2015-05-12 08:07:55 +00:00
makedepends="zlib-devel python-devel
$(vopt_if ssl libressl-devel) $(vopt_if libuv libuv-devel)
$(vopt_if http_parser http-parser-devel)"
2015-03-25 12:25:32 +00:00
depends="python"
short_desc="Evented I/O for V8 javascript"
2015-05-12 08:07:55 +00:00
maintainer="Enno Boland <gottox@voidlinux.eu>"
2015-03-25 12:25:32 +00:00
license="MIT"
homepage="http://iojs.org/"
distfiles="${homepage}/dist/v${version}/${pkgname}-v${version}.tar.gz"
2015-07-05 07:06:39 +00:00
checksum=0384ea20739124c27dc9b47b8079f0c75efb33c7011c45f02243e9a015f8cd89
2015-03-25 12:25:32 +00:00
provides="nodejs-0.12.1_1"
conflicts="nodejs>=0"
2015-05-12 08:07:55 +00:00
build_options="ssl libuv http_parser"
desc_option_libuv="Enable shared libuv"
desc_option_http_parser="Enable shared http-parser"
# broken with libressl, use bundled openssl instead
# linking error with http_parser, use bundled instead
build_options_default="libuv"
2015-03-25 12:25:32 +00:00
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
2015-05-12 08:07:55 +00:00
./configure --prefix=/usr --shared-zlib \
$(vopt_if http_parser --shared-http-parser) \
$(vopt_if ssl --shared-openssl) \
$(vopt_if libuv --shared-libuv) ${_args}
2015-03-25 12:25:32 +00:00
}
do_build() {
if [ "$CROSS_BUILD" ]; then
2015-05-12 08:07:55 +00:00
make LD="$CXX" LDFLAGS+=-ldl ${makejobs} PORTABLE=1 V=1
2015-03-25 12:25:32 +00:00
else
2015-05-12 08:07:55 +00:00
make LD="$CXX" LDFLAGS+=-ldl ${makejobs} V=1
2015-03-25 12:25:32 +00:00
fi
}
do_install() {
2015-05-12 08:07:55 +00:00
make LD="$CXX" LDFLAGS+=-ldl DESTDIR="$DESTDIR" install
2015-03-25 12:25:32 +00:00
vlicense LICENSE
2015-05-12 08:07:55 +00:00
rm -r $DESTDIR/usr/include
2015-03-25 12:25:32 +00:00
}