aports/main/meson/abuild-meson
psykose a83ba601ea main/meson: default python bytecompile to 0
new in 1.2 module

-1 is 'none' and 0 is .pyc (non opt-1/2) only
we only ship base .pyc because the -opt variants are useless and
just duplicate files for zero runtime benefit, and people can runtime
generate them with PYTHONOPTIMIZE=1/2 or
python3 -OO -m compileall -fq ...
2023-07-16 23:35:36 +02:00

76 lines
1.7 KiB
Bash
Executable File

#!/bin/sh -e
# Highly opinionated wrapper for Alpine Linux packaging
. /usr/share/abuild/functions.sh
# mostly taken from https://github.com/void-linux/void-packages/blob/22bf95cf356bf1a09212733d775d447d011f70b0/common/build-style/meson.sh
if [ "$CHOST" != "$CBUILD" ]; then
_meson_crossfile="abuild-meson.cross"
_meson_target_endian=little
# just the first part of the hostspec
_meson_target_cpu="$CARCH"
case "$CARCH" in
arm*)
_meson_cpu_family=arm
;;
x86)
_meson_cpu_family=x86
;;
ppc64le)
_meson_cpu_family=ppc64
;;
s390x)
_meson_cpu_family=s390x
_meson_target_endian=big
;;
riscv64)
_meson_cpu_family=riscv64
;;
x86_64)
_meson_cpu_family=x86_64
;;
aarch64)
_meson_cpu_family=aarch64
;;
esac
cat > $_meson_crossfile <<-EOF
[binaries]
strip = '${CROSS_COMPILE}strip'
readelf = '${CROSS_COMPILE}readelf'
objcopy = '${CROSS_COMPILE}objcopy'
[properties]
needs_exe_wrapper = true
[host_machine]
system = 'linux'
cpu_family = '$_meson_cpu_family'
cpu = '$_meson_target_cpu'
endian = '$_meson_target_endian'
EOF
unset _meson_target_cpu _meson_target_endian _meson_cpu_family
fi
exec meson setup \
--prefix=/usr \
--libdir=/usr/lib \
--libexecdir=/usr/libexec \
--bindir=/usr/bin \
--sbindir=/usr/sbin \
--includedir=/usr/include \
--datadir=/usr/share \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localedir=/usr/share/locale \
--sysconfdir=/etc \
--localstatedir=/var \
--sharedstatedir=/var/lib \
--buildtype=plain \
--auto-features=auto \
--wrap-mode=nodownload \
-Db_lto=false \
-Db_staticpic=true \
-Db_pie=true \
-Dpython.bytecompile=0 \
-Dwerror=false \
${_meson_crossfile:+--cross-file=$_meson_crossfile} \
"$@"