freetype2: fix dynamic library compilation

This commit is contained in:
Jeremy Soller 2025-04-10 17:02:39 -06:00
parent a20b571459
commit 9024df0007
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA

View File

@ -3,12 +3,55 @@ tar = "https://download.savannah.gnu.org/releases/freetype/freetype-2.13.3.tar.x
blake3 = "07a01894ccdb584943ce817b57341a8595ce9a92bfaa77c602ec4757dfabd5e2"
[build]
template = "custom"
dependencies = [
"libpng",
"zlib"
]
template = "custom"
script = """
DYNAMIC_INIT
cookbook_configure
# TODO: Fix this annoying shite
echo "[binaries]" > cross_file.txt
echo "c = '${CC}'" >> cross_file.txt
echo "cpp = '${CXX}'" >> cross_file.txt
echo "ar = '${AR}'" >> cross_file.txt
echo "strip = '${STRIP}'" >> cross_file.txt
echo "pkg-config = '${TARGET}-pkg-config'" >> cross_file.txt
echo "[host_machine]" >> cross_file.txt
echo "system = 'redox'" >> cross_file.txt
echo "cpu_family = '$(echo "${TARGET}" | cut -d - -f1)'" >> cross_file.txt
echo "cpu = '$(echo "${TARGET}" | cut -d - -f1)'" >> cross_file.txt
echo "endian = 'little'" >> cross_file.txt
echo "[paths]" >> cross_file.txt
echo "prefix = '${COOKBOOK_SYSROOT}'" >> cross_file.txt
echo "libdir = 'lib'" >> cross_file.txt
echo "bindir = 'bin'" >> cross_file.txt
unset AR
unset AS
unset CC
unset CXX
unset LD
unset NM
unset OBJCOPY
unset OBJDUMP
unset PKG_CONFIG
unset RANLIB
unset READELF
unset STRIP
meson \
setup \
"${COOKBOOK_SOURCE}" \
_build \
--cross-file cross_file.txt \
--buildtype release \
--strip \
-Dprefix=/usr \
-Dlibdir=lib
ninja -C _build -v
DESTDIR="${COOKBOOK_STAGE}" ninja -C _build -v install
"""