nodejs: add build options to enable/disable shared dependencies
This commit is contained in:
parent
8b114a0f8d
commit
c802c085fa
|
@ -4,7 +4,9 @@ version=0.12.3
|
|||
revision=1
|
||||
wrksrc=node-v${version}
|
||||
hostmakedepends="pkg-config python"
|
||||
makedepends="libressl-devel zlib-devel python-devel libuv-devel"
|
||||
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>"
|
||||
|
@ -12,6 +14,12 @@ license="MIT"
|
|||
homepage="http://nodejs.org/"
|
||||
distfiles="${homepage}/dist/v${version}/node-v${version}.tar.gz"
|
||||
checksum=e65d83c6f2c874e28f65c5e192ac0acd2bbb52bfcf9d77e33442d6765a3eb9da
|
||||
build_options="ssl libuv http_parser"
|
||||
desc_option_libuv="Enable shared libuv"
|
||||
desc_option_http_parser="Enable shared http-parser"
|
||||
|
||||
# shared http_parser broken
|
||||
build_options_default="ssl libuv"
|
||||
|
||||
do_configure() {
|
||||
local _args
|
||||
|
@ -23,7 +31,10 @@ do_configure() {
|
|||
*) 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}
|
||||
./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
|
||||
|
|
Loading…
Reference in New Issue