90 lines
2.7 KiB
Text
90 lines
2.7 KiB
Text
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
pkgbase=glib2
|
|
pkgname=(glib2 glib2-docs)
|
|
pkgver=2.72.2
|
|
pkgrel=1
|
|
pkgdesc="Low level core library"
|
|
url="https://wiki.gnome.org/Projects/GLib"
|
|
license=(LGPL)
|
|
arch=(x86_64)
|
|
depends=(pcre libffi util-linux-libs zlib libsysprof-capture)
|
|
makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux
|
|
meson dbus)
|
|
checkdepends=(desktop-file-utils)
|
|
options=(debug)
|
|
_commit=a2e950a0210012bd5aa29a6617dfb9d3c8b7a867 # tags/2.72.2^0
|
|
source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit"
|
|
0001-glib-compile-schemas-Remove-noisy-deprecation-warnin.patch
|
|
glib-compile-schemas.hook gio-querymodules.{hook,script})
|
|
sha256sums=('SKIP'
|
|
'f410289d8acf787cf0fc512efe5622d4bbd574c032e3ee0efd9cae2155b2c3dc'
|
|
'64ae5597dda3cc160fc74be038dbe6267d41b525c0c35da9125fbf0de27f9b25'
|
|
'2a9f9b8235f48e3b7d0f6cfcbc76cd2116c45f28692cac4bd61074c495bd5eb7'
|
|
'92d08db5aa30bda276bc3d718e7ff9dd01dc40dcab45b359182dcc290054e24e')
|
|
|
|
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
|
|
}
|
|
|
|
build() {
|
|
# Produce more debug info: GLib has a lot of useful macros
|
|
CFLAGS+=' -g3'
|
|
CXXFLAGS+=' -g3'
|
|
|
|
CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
|
|
arch-meson glib build \
|
|
-D glib_debug=disabled \
|
|
-D selinux=disabled \
|
|
-D man=true \
|
|
-D sysprof=enabled \
|
|
-D gtk_doc=true
|
|
meson compile -C build
|
|
}
|
|
|
|
check() {
|
|
meson test -C build --no-suite flaky --no-suite slow --print-errorlogs
|
|
}
|
|
|
|
package_glib2() {
|
|
depends+=(libmount.so libffi.so)
|
|
provides+=(libgio-2.0.so libglib-2.0.so libgmodule-2.0.so libgobject-2.0.so
|
|
libgthread-2.0.so)
|
|
optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, gtester-report'
|
|
'libelf: gresource inspection tool'
|
|
'gvfs: most gio functionality')
|
|
|
|
meson install -C build --destdir "$pkgdir"
|
|
|
|
install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
|
|
install -D gio-querymodules.script "$pkgdir/usr/share/libalpm/scripts/gio-querymodules"
|
|
|
|
python -m compileall -d /usr/share/glib-2.0/codegen \
|
|
"$pkgdir/usr/share/glib-2.0/codegen"
|
|
python -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/gtk-doc
|
|
}
|
|
|
|
package_glib2-docs() {
|
|
pkgdesc="Documentation for GLib"
|
|
depends=()
|
|
license+=(custom)
|
|
|
|
mv -t "$pkgdir" docs/*
|
|
install -Dt "$pkgdir/usr/share/licenses/$pkgname" -m644 glib/docs/reference/COPYING
|
|
}
|
|
|
|
# vim:set sw=2 et:
|