PKGBUILDs/core/glib2/PKGBUILD

89 lines
2.5 KiB
Bash
Raw Normal View History

2020-08-21 17:27:01 +00:00
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
2018-09-18 01:27:20 +00:00
2018-09-18 01:32:02 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2019-03-10 17:09:40 +00:00
# - disable docs
2018-09-18 01:32:02 +00:00
2018-09-18 01:27:20 +00:00
pkgbase=glib2
pkgname=(glib2 glib2-docs)
2020-10-21 01:28:52 +00:00
pkgver=2.66.2
pkgrel=1
2018-09-18 01:27:20 +00:00
pkgdesc="Low level core library"
url="https://wiki.gnome.org/Projects/GLib"
license=(LGPL2.1)
arch=(x86_64)
2020-10-05 19:01:12 +00:00
depends=(pcre libffi util-linux-libs zlib)
2020-02-22 02:36:55 +00:00
makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux
2020-10-05 19:01:12 +00:00
meson dbus sysprof)
2018-09-18 01:27:20 +00:00
checkdepends=(desktop-file-utils)
2020-10-21 01:28:52 +00:00
_commit=500db2e0b8643815cdd9cba4eb67d5daf1352338 # tags/2.66.2^0
2018-09-18 01:27:20 +00:00
source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit"
noisy-glib-compile-schemas.diff
2020-05-22 12:58:43 +00:00
glib-compile-schemas.hook gio-querymodules.hook)
2018-09-18 01:27:20 +00:00
sha256sums=('SKIP'
'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
2020-03-01 17:21:35 +00:00
'64ae5597dda3cc160fc74be038dbe6267d41b525c0c35da9125fbf0de27f9b25'
2020-05-22 12:58:43 +00:00
'557c88177f011ced17bdeac1af3f882b2ca33b386a866fdf900b35f927a2bbe8')
2018-09-18 01:27:20 +00:00
pkgver() {
cd glib
git describe --tags | sed 's/-/+/g'
}
prepare() {
cd glib
# Suppress noise from glib-compile-schemas.hook
2020-02-11 13:32:34 +00:00
git apply -3 ../noisy-glib-compile-schemas.diff
2018-09-18 01:27:20 +00:00
}
build() {
2019-06-10 18:19:41 +00:00
CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
2018-09-18 01:27:20 +00:00
arch-meson glib build \
2019-03-10 17:09:40 +00:00
-D selinux=disabled \
2020-10-05 19:01:12 +00:00
-D sysprof=enabled \
2018-09-18 01:27:20 +00:00
-D man=true \
2019-03-10 17:09:40 +00:00
-D gtk_doc=false
2020-05-22 12:58:43 +00:00
meson compile -C build
2018-09-18 01:27:20 +00:00
}
check() {
2019-04-17 18:16:37 +00:00
meson test -C build --no-suite flaky --print-errorlogs
2018-09-18 01:27:20 +00:00
}
package_glib2() {
2020-02-22 02:36:55 +00:00
depends+=(libmount.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')
2018-09-18 01:27:20 +00:00
DESTDIR="$pkgdir" meson install -C build
install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
2020-10-05 19:01:12 +00:00
# Avoid a dep on sysprof
sed -i 's/, sysprof-capture-4//' "$pkgdir"/usr/lib/pkgconfig/*.pc
2020-05-24 00:55:08 +00:00
export PYTHONHASHSEED=0
2020-02-22 02:36:55 +00:00
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"
2018-09-18 01:27:20 +00:00
# Split docs
2019-03-10 17:09:40 +00:00
#mv "$pkgdir/usr/share/gtk-doc" "$srcdir"
2018-09-18 01:27:20 +00:00
}
package_glib2-docs() {
pkgdesc="Documentation for GLib"
depends=()
license+=(custom)
mkdir -p "$pkgdir/usr/share"
2019-03-10 17:09:40 +00:00
#mv gtk-doc "$pkgdir/usr/share"
2018-09-18 01:27:20 +00:00
install -Dt "$pkgdir/usr/share/licenses/glib2-docs" -m644 glib/docs/reference/COPYING
}
# vim:set sw=2 et: