jobextra/gtk-doc/PKGBUILD-arch

75 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-03-20 13:34:07 +01:00
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=gtk-doc
pkgver=1.33.2
2023-07-18 10:12:03 +02:00
pkgrel=3
2022-03-20 13:34:07 +01:00
pkgdesc="Documentation tool for public library API"
url="https://www.gtk.org/gtk-doc/"
arch=(any)
2023-07-18 10:12:03 +02:00
license=(
FDL
GPL
)
depends=(
docbook-xml
docbook-xsl
glib2-docs
python-lxml
python-pygments
)
makedepends=(
dblatex
git
meson
yelp-tools
)
checkdepends=(
bc
gtk3
python-parameterized
python-six
)
2022-03-20 13:34:07 +01:00
optdepends=('dblatex: PDF support')
_commit=14391142ee9d43da116f0f530746ae34cc46930a # tags/1.33.2^0
2023-07-18 10:12:03 +02:00
source=(
"git+https://gitlab.gnome.org/GNOME/gtk-doc.git#commit=$_commit"
0001-Partially-revert-a-gtk-doc-1.31-change-that-broke-e-.patch
0002-Fix-tests.patch
)
b2sums=('SKIP'
'82161f0f0860e9b21748b6aadf3dd7017f4541240aa3b0d54bdec74d1b6b8e771a1ab74bc0420899d09b7125361c3fcc2acb15bdf0a3fef8753a08a0992a5eb0'
'aec43a320f2c687a8c3529eb0b396dcf318b08fec8dcae06d3c2ab0ddeed04e1d324bac158cc15a50ddae768b42a815742a86c24917b295f3c3f6f2d7ad225c7')
2022-03-20 13:34:07 +01:00
pkgver() {
2023-07-18 10:12:03 +02:00
cd gtk-doc
2022-03-20 13:34:07 +01:00
git describe --tags | sed 's/GTK_DOC_//;s/_/\./g;s/-/+/g'
}
prepare() {
2023-07-18 10:12:03 +02:00
cd gtk-doc
2022-03-20 13:34:07 +01:00
# https://gitlab.gnome.org/GNOME/gtk-doc/-/merge_requests/58
git apply -3 ../0001-Partially-revert-a-gtk-doc-1.31-change-that-broke-e-.patch
2023-07-18 10:12:03 +02:00
# test-gobject-mkhtml: ../xml/object.xml:139: element include: XInclude error : could not load ../../examples/gobject.c, and no fallback was found
git apply -3 ../0002-Fix-tests.patch
2022-03-20 13:34:07 +01:00
}
build() {
2023-07-18 10:12:03 +02:00
arch-meson gtk-doc build
2022-03-20 13:34:07 +01:00
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
2023-07-18 10:12:03 +02:00
meson install -C build --destdir "$pkgdir"
2022-03-20 13:34:07 +01:00
python -m compileall -d /usr/lib "$pkgdir/usr/lib"
python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
}
2023-07-18 10:12:03 +02:00
# vim:set sw=2 sts=-1 et: