mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-10 17:13:51 +02:00
nodejs: fix i686 and some cleanup
This commit is contained in:
parent
eb36028679
commit
6883b66f35
1 changed files with 53 additions and 35 deletions
|
@ -1,14 +1,29 @@
|
|||
# Template file for 'nodejs'
|
||||
pkgname=nodejs
|
||||
version=22.15.0
|
||||
revision=1
|
||||
hostmakedepends="which pkg-config python3-setuptools"
|
||||
_make_depends="zlib-devel \
|
||||
$(vopt_if icu icu-devel) \
|
||||
$(vopt_if ssl openssl-devel) \
|
||||
$(vopt_if libuv libuv-devel) \
|
||||
$(vopt_if nghttp2 nghttp2-devel) \
|
||||
$(vopt_if cares c-ares-devel) \
|
||||
revision=2
|
||||
build_style=configure
|
||||
configure_args="
|
||||
--prefix=/usr
|
||||
--enable-lto
|
||||
--shared-zlib
|
||||
--shared-ada
|
||||
$(vopt_if icu --with-intl=system-icu)
|
||||
$(vopt_if ssl --shared-openssl)
|
||||
$(vopt_if libuv --shared-libuv)
|
||||
$(vopt_if nghttp2 --shared-nghttp2)
|
||||
$(vopt_if cares --shared-cares)
|
||||
$(vopt_if brotli --shared-brotli)"
|
||||
make_build_args="V=1 LD=$CXX"
|
||||
hostmakedepends="pkg-config python3-setuptools"
|
||||
_make_depends="
|
||||
zlib-devel
|
||||
ada-devel
|
||||
$(vopt_if icu icu-devel)
|
||||
$(vopt_if ssl openssl-devel)
|
||||
$(vopt_if libuv libuv-devel)
|
||||
$(vopt_if nghttp2 nghttp2-devel)
|
||||
$(vopt_if cares c-ares-devel)
|
||||
$(vopt_if brotli brotli-devel)"
|
||||
makedepends="${_make_depends}"
|
||||
checkdepends="procps-ng iana-etc"
|
||||
|
@ -56,21 +71,23 @@ esac
|
|||
CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||
CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||
|
||||
do_configure() {
|
||||
local _args
|
||||
post_patch() {
|
||||
vsed -e 's/install: all/install:/' -i Makefile
|
||||
}
|
||||
|
||||
pre_configure() {
|
||||
export LD="$CXX"
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
arm*) _args="--dest-cpu=arm" ;;
|
||||
aarch64*) _args="--dest-cpu=arm64" ;;
|
||||
ppc64*) _args="--dest-cpu=ppc64" ;;
|
||||
ppc*) _args="--dest-cpu=ppc" ;;
|
||||
mipsel*) _args="--dest-cpu=mipsel" ;;
|
||||
mips*) _args="--dest-cpu=mips" ;;
|
||||
i686*) _args="--dest-cpu=x86" ;;
|
||||
x86_64*) _args="--dest-cpu=x86_64" ;;
|
||||
riscv64*) _args="--dest-cpu=riscv64" ;;
|
||||
arm*) configure_args+=" --dest-cpu=arm" ;;
|
||||
aarch64*) configure_args+=" --dest-cpu=arm64" ;;
|
||||
ppc64*) configure_args+=" --dest-cpu=ppc64" ;;
|
||||
ppc*) configure_args+=" --dest-cpu=ppc" ;;
|
||||
mipsel*) configure_args+=" --dest-cpu=mipsel" ;;
|
||||
mips*) configure_args+=" --dest-cpu=mips" ;;
|
||||
i686*) configure_args+=" --dest-cpu=x86" ;;
|
||||
x86_64*) configure_args+=" --dest-cpu=x86_64" ;;
|
||||
riscv64*) configure_args+=" --dest-cpu=riscv64" ;;
|
||||
*) msg_error "$pkgver: cannot be cross compiled for ${XBPS_TARGET_MACHINE}.\n" ;;
|
||||
esac
|
||||
# this is necessary - for example, normally compiling from ppc64le
|
||||
|
@ -79,23 +96,25 @@ do_configure() {
|
|||
#
|
||||
# that results in the toolset built for target only, and attempting
|
||||
# to execute it within the build system fails
|
||||
_args+=" --cross-compiling"
|
||||
configure_args+=" --cross-compiling"
|
||||
fi
|
||||
|
||||
CFLAGS=${CFLAGS/-O2/}
|
||||
CXXFLAGS=${CXXFLAGS/-O2/}
|
||||
if [ "$XBPS_WORDSIZE" = 32 ]; then
|
||||
CFLAGS=${CFLAGS/-g /-g1 }
|
||||
CXXFLAGS=${CFLAGS/-g /-g1 }
|
||||
fi
|
||||
./configure --prefix=/usr --shared-zlib --enable-lto \
|
||||
$(vopt_if icu --with-intl=system-icu) \
|
||||
$(vopt_if ssl --shared-openssl) \
|
||||
$(vopt_if libuv --shared-libuv) \
|
||||
$(vopt_if nghttp2 --shared-nghttp2) \
|
||||
$(vopt_if cares --shared-cares) \
|
||||
$(vopt_if brotli --shared-brotli) ${_args}
|
||||
}
|
||||
|
||||
do_build() {
|
||||
if [ "$CROSS_BUILD" ]; then
|
||||
make LD="$CXX" LDFLAGS+=-ldl ${makejobs} PORTABLE=1 V=1
|
||||
else
|
||||
make LD="$CXX" LDFLAGS+=-ldl ${makejobs} V=1
|
||||
pre_build() {
|
||||
CFLAGS=${CFLAGS/-O2/}
|
||||
CXXFLAGS=${CXXFLAGS/-O2/}
|
||||
if [ "$XBPS_WORDSIZE" = 32 ]; then
|
||||
CFLAGS=${CFLAGS/-g /-g1 }
|
||||
CXXFLAGS=${CFLAGS/-g /-g1 }
|
||||
fi
|
||||
make_build_args+=" PORTABLE=1"
|
||||
}
|
||||
|
||||
do_check() {
|
||||
|
@ -148,9 +167,8 @@ test-tls-sni-server-client.js,\
|
|||
make CI_SKIP_TESTS="$CI_SKIP_TESTS" LD="$CXX" LDFLAGS+=-ldl ${makejobs} V=1 test-only
|
||||
}
|
||||
|
||||
do_install() {
|
||||
make LD="$CXX" LDFLAGS+=-ldl DESTDIR="$DESTDIR" install
|
||||
rm $DESTDIR/usr/include/node/openssl -rf
|
||||
post_install() {
|
||||
rm -rf $DESTDIR/usr/include/node/openssl
|
||||
vlicense LICENSE
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue