88 lines
2.8 KiB
Bash
88 lines
2.8 KiB
Bash
# Template file for 'mozjs115'
|
|
pkgname=mozjs115
|
|
version=115.8.0
|
|
revision=1
|
|
build_wrksrc=js/src
|
|
build_style=gnu-configure
|
|
build_helper=rust
|
|
make_check_target=check-jit-test
|
|
configure_args="--disable-jemalloc --disable-strip --disable-tests \
|
|
--disable-optimize --disable-debug --enable-ctypes --enable-readline \
|
|
--enable-shared-js --enable-system-ffi --with-intl-api --with-system-icu \
|
|
--with-system-nspr --with-system-zlib --enable-hardening --enable-release"
|
|
hostmakedepends="make pkg-config python3 python3-setuptools python3-six perl m4
|
|
rust cargo llvm17 clang"
|
|
makedepends="icu-devel libffi-devel nspr-devel python3-devel readline-devel
|
|
zlib-devel rust-std"
|
|
checkdepends="python3"
|
|
short_desc="SpiderMonkey JavaScript interpreter and library (115.x)"
|
|
maintainer="oreo639 <oreo6391@gmail.com>"
|
|
license="MPL-2.0"
|
|
homepage="https://spidermonkey.dev"
|
|
distfiles="${MOZILLA_SITE}/firefox/releases/${version}esr/source/firefox-${version}esr.source.tar.xz"
|
|
checksum=af8086f23efc8492d286671f6035b1a915de6f4ed5c7897e40be0e1cb6b895ea
|
|
|
|
LDFLAGS="-Wl,-z,stack-size=1048576"
|
|
|
|
pre_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
configure_args+=" --host=${XBPS_TRIPLET} --target=${XBPS_CROSS_TRIPLET} --enable-linker=bfd"
|
|
fi
|
|
export M4=m4
|
|
export AWK=awk
|
|
export AC_MACRODIR=${wrksrc}/build/autoconf
|
|
|
|
rm -r ${wrksrc}/third_party/python/six
|
|
mkdir ${wrksrc}/third_party/python/six
|
|
ln -s /${py3_sitelib}/six.py ${wrksrc}/third_party/python/six
|
|
}
|
|
|
|
post_install() {
|
|
# Remove unneeded static library
|
|
rm -f "${DESTDIR}"/usr/lib/*.ajs
|
|
|
|
# it has correct soname but not the right file name
|
|
mv "${DESTDIR}"/usr/lib/libmozjs-${version%%.*}.so \
|
|
"${DESTDIR}"/usr/lib/libmozjs-${version%%.*}.so.0
|
|
ln -rs "${DESTDIR}"/usr/lib/libmozjs-${version%%.*}.so.0 \
|
|
"${DESTDIR}"/usr/lib/libmozjs-${version%%.*}.so
|
|
}
|
|
|
|
pre_check() {
|
|
export JITTEST_EXTRA_ARGS="--timeout 600"
|
|
if [ "$XBPS_WORDSIZE" = 32 ]; then
|
|
vsed -i jit-test/tests/basic/bug653153.js -e s/65536/65568/g
|
|
vsed -i jit-test/tests/basic/bug653153.js -e s/65537/65569/g
|
|
fi
|
|
if [ "$XBPS_TARGET_MACHINE" = i686 ]; then
|
|
export JITTEST_EXTRA_ARGS="${JITTEST_EXTRA_ARGS} \
|
|
-x basic/fdlibm-for-sin-cos-tan-argument.js \
|
|
-x gc/gcparam.js \
|
|
-x ion/dce-with-rinstructions.js \
|
|
-x sunspider/check-3d-cube.js \
|
|
-x sunspider/check-3d-raytrace.js \
|
|
-x sunspider/check-access-nbody.js \
|
|
-x wasm/nan-semantics.js \
|
|
-x wasm/spec/spec/float_literals.wast.js \
|
|
-x wasm/spec/spec/float_memory.wast.js \
|
|
-x wasm/spec/threads/float_memory.wast.js \
|
|
"
|
|
fi
|
|
if [ "$XBPS_LIBC" = musl ]; then
|
|
export JITTEST_EXTRA_ARGS="${JITTEST_EXTRA_ARGS} \
|
|
-x sunspider/check-date-format-tofte.js \
|
|
"
|
|
fi
|
|
}
|
|
|
|
mozjs115-devel_package() {
|
|
depends="nspr-devel ${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|