2015-06-13 01:03:31 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://developer.gnome.org/glib/
|
|
|
|
TERMUX_PKG_DESCRIPTION="Library providing core building blocks for libraries and applications written in C"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
2020-02-21 23:16:47 +01:00
|
|
|
TERMUX_PKG_VERSION=2.62.5
|
2017-09-12 13:45:40 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://ftp.gnome.org/pub/gnome/sources/glib/${TERMUX_PKG_VERSION:0:4}/glib-${TERMUX_PKG_VERSION}.tar.xz
|
2020-02-21 23:16:47 +01:00
|
|
|
TERMUX_PKG_SHA256=b8d1cdafa46658b63d7512efbe2cd21bd36cd7be83140e44930c47b79f82452e
|
2016-10-16 21:55:58 +02:00
|
|
|
# libandroid-support to get langinfo.h in include path.
|
2019-05-05 16:45:07 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libffi, libiconv, pcre, libandroid-support, zlib"
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BREAKS="glib-dev"
|
|
|
|
TERMUX_PKG_REPLACES="glib-dev"
|
2018-08-22 12:03:54 +02:00
|
|
|
TERMUX_PKG_RM_AFTER_INSTALL="share/gtk-doc lib/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-gettextize bin/gdbus-codegen"
|
2016-09-12 12:23:37 +02:00
|
|
|
# Needed by pkg-config for glib-2.0:
|
2017-03-14 02:17:04 +01:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
2019-05-11 23:27:58 +02:00
|
|
|
-Dlibmount=false
|
2019-11-03 00:40:12 +01:00
|
|
|
-Diconv=external
|
2017-03-14 02:17:04 +01:00
|
|
|
"
|
2015-06-13 01:03:31 +02:00
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_pre_configure() {
|
2016-09-04 00:45:08 +02:00
|
|
|
# glib checks for __BIONIC__ instead of __ANDROID__:
|
2019-12-29 20:00:28 +01:00
|
|
|
CFLAGS+=" -D__BIONIC__=1"
|
2015-06-13 01:03:31 +02:00
|
|
|
}
|
2020-01-13 23:34:01 +01:00
|
|
|
|
|
|
|
termux_step_create_debscripts() {
|
|
|
|
for i in postinst postrm triggers; do
|
|
|
|
sed \
|
|
|
|
"s|@TERMUX_PREFIX@|${TERMUX_PREFIX}|g" \
|
|
|
|
"${TERMUX_PKG_BUILDER_DIR}/hooks/${i}.in" > ./${i}
|
|
|
|
chmod 755 ./${i}
|
|
|
|
done
|
|
|
|
unset i
|
|
|
|
chmod 644 ./triggers
|
|
|
|
}
|