e1b9535b438bd6079ca333805fcf261ae9d6453d
[termux-packages] / packages / glib / build.sh
1 TERMUX_PKG_HOMEPAGE=https://developer.gnome.org/glib/
2 TERMUX_PKG_DESCRIPTION="Library providing core building blocks for libraries and applications written in C"
3 _TERMUX_GLIB_MAJOR_VERSION=2.50
4 TERMUX_PKG_VERSION=${_TERMUX_GLIB_MAJOR_VERSION}.2
5 TERMUX_PKG_SRCURL=https://ftp.gnome.org/pub/gnome/sources/glib/${_TERMUX_GLIB_MAJOR_VERSION}/glib-${TERMUX_PKG_VERSION}.tar.xz
6 # libandroid-support to get langinfo.h in include path.
7 TERMUX_PKG_DEPENDS="libffi, pcre, libandroid-support"
8 TERMUX_PKG_RM_AFTER_INSTALL="share/gtk-doc share/locale share/glib-2.0/gettext share/gdb/auto-load share/glib-2.0/codegen share/glib-2.0/gdb bin/gtester-report bin/glib-mkenums bin/glib-gettextize bin/gdbus-codegen"
9 # Needed by pkg-config for glib-2.0:
10 TERMUX_PKG_DEVPACKAGE_DEPENDS="pcre-dev"
11 TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="lib/glib-2.0/include"
12
13 # --enable-compile-warnings=no to get rid of format strings causing errors
14 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-compile-warnings --disable-gtk-doc --disable-gtk-doc-html --cache-file=termux_configure.cache --with-pcre=system"
15 # --disable-znodelete to avoid DF_1_NODELETE which most Android 5.0 linkers does not support:
16 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-znodelete"
17 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-libelf"
18 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-libmount"
19
20 termux_step_pre_configure () {
21 # glib checks for __BIONIC__ instead of __ANDROID__:
22 CFLAGS="$CFLAGS -D__BIONIC__=1"
23
24 cd $TERMUX_PKG_BUILDDIR
25
26 # https://developer.gnome.org/glib/stable/glib-cross-compiling.html
27 echo "glib_cv_long_long_format=ll" >> termux_configure.cache
28 echo "glib_cv_stack_grows=no" >> termux_configure.cache
29 echo "glib_cv_uscore=no" >> termux_configure.cache
30 chmod a-w termux_configure.cache
31 }