pkgbase=glib2
pkgname=(
glib2
# glib2-docs
)
pkgver=2.80.0
if [ ! -z "$ARMLFS_GLIB2_NO_INTROSPECTION" ]; then
pkgrel=1
else
pkgrel=3
fi
pkgdesc="Low level core library"
url="https://gitlab.gnome.org/GNOME/glib"
license=(LGPL-2.1-or-later)
arch=('armv7h' 'aarch64')
depends=(
libffi
pcre2
zlib
)
makedepends=(
dbus
gettext
git
meson
python
python-packaging
python-docutils
util-linux
)
if [ -z "$ARMLFS_GLIB2_NO_INTROSPECTION" ]; then
makedepends+=(
gobject-introspection
)
fi
options=(
debug
staticlibs
)
_commit=763cc3b238398614c20069fd67642730e3a6519b # tags/2.80.0^0
source=(
"git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit"
"git+https://gitlab.gnome.org/GNOME/gvdb.git"
0001-glib-compile-schemas-Remove-noisy-deprecation-warnin.patch
gio-querymodules.hook
glib-compile-schemas.hook
)
pkgver() {
cd glib
git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
}
prepare() {
cd glib
# Suppress noise from glib-compile-schemas.hook
git apply -3 ../0001-glib-compile-schemas-Remove-noisy-deprecation-warnin.patch
git submodule init
git submodule set-url subprojects/gvdb "$srcdir/gvdb"
git -c protocol.file.allow=always submodule update
}
build() {
local meson_options=(
--default-library both
-D glib_debug=disabled
-D selinux=disabled
)
# To bootstrap without gobject-introspection:
if [ ! -z "$ARMLFS_GLIB2_NO_INTROSPECTION" ]; then
meson_options+=(
-D introspection=disabled
)
fi
# Produce more debug info: GLib has a lot of useful macros
CFLAGS+=" -g3"
CXXFLAGS+=" -g3"
# use fat LTO objects for static libraries
CFLAGS+=" -ffat-lto-objects"
CXXFLAGS+=" -ffat-lto-objects"
arch-meson glib build "${meson_options[@]}"
meson compile -C build
}
package_glib2() {
provides+=(libg{lib,io,irepository,module,object,thread}-2.0.so)
meson install -C build --destdir "$pkgdir"
install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
touch "$pkgdir/usr/lib/gio/modules/.keep"
python3 -m compileall -d /usr/share/glib-2.0/codegen \
"$pkgdir/usr/share/glib-2.0/codegen"
python3 -O -m compileall -d /usr/share/glib-2.0/codegen \
"$pkgdir/usr/share/glib-2.0/codegen"
# Split docs
# mkdir -p docs/usr/share
# mv {"$pkgdir",docs}/usr/share/doc
}
package_glib2-docs() {
pkgdesc+=" - documentation"
depends=()
license+=(LicenseRef-Public-Domain)
mv -t "$pkgdir" docs/*
install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 glib/docs/reference/COPYING
}
# vim:set sw=2 sts=-1 et:
sha256sums=('3fa25d3b682ce06d4a5f3b4d02d04e43a810622d7af86dbdc8c6853ce012738b'
'SKIP'
'7f8ee5db60987f0d0feba84643e1cf988c98a294a681fb8d4fce1a5b2c25d1d3'
'557c88177f011ced17bdeac1af3f882b2ca33b386a866fdf900b35f927a2bbe8'
'fe31399eb057d24a37062bcae6f88ca0778a91b85737f8110a03baa8bfc64fec')