mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-04 18:48:43 +08:00
gstreamer: clean up reicpe, switch to pcre2
This commit is contained in:
parent
98b9c2f470
commit
7a87c0bd90
@ -22,7 +22,7 @@ dependencies = [
|
||||
"libvorbis",
|
||||
"libxml2",
|
||||
#TODO "pango",
|
||||
"pcre",
|
||||
"pcre2",
|
||||
"pixman",
|
||||
"zlib"
|
||||
]
|
||||
@ -31,50 +31,7 @@ DYNAMIC_INIT
|
||||
|
||||
export GLIB_GENMARSHAL="$(which glib-genmarshal)"
|
||||
export GLIB_MKENUMS="$(which glib-mkenums)"
|
||||
export LDFLAGS="-L${COOKBOOK_SYSROOT}/lib"
|
||||
|
||||
# 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=/ \
|
||||
-Dlibdir=lib \
|
||||
cookbook_meson \
|
||||
-Dauto_features=disabled
|
||||
ninja -C _build -v
|
||||
DESTDIR="${COOKBOOK_STAGE}" ninja -C _build -v install
|
||||
"""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user