jobextra/gtk-doc/PKGBUILD-arch

68 lines
1.4 KiB
Text
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
2024-03-05 23:52:04 +01:00
pkgver=1.34.0
pkgrel=1
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=(
2024-03-05 23:52:04 +01:00
GFDL-1.1-or-later
GPL-2.0-or-later
2023-07-18 10:12:03 +02:00
)
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')
2024-03-05 23:52:04 +01:00
_commit=b7c8317bf023b5116250b4c5381737d5b9786976 # tags/1.34.0^0
2023-07-18 10:12:03 +02:00
source=(
"git+https://gitlab.gnome.org/GNOME/gtk-doc.git#commit=$_commit"
2024-03-05 23:52:04 +01:00
0001-Fix-tests.patch
2023-07-18 10:12:03 +02:00
)
b2sums=('SKIP'
'aec43a320f2c687a8c3529eb0b396dcf318b08fec8dcae06d3c2ab0ddeed04e1d324bac158cc15a50ddae768b42a815742a86c24917b295f3c3f6f2d7ad225c7')
2022-03-20 13:34:07 +01:00
pkgver() {
2023-07-18 10:12:03 +02:00
cd gtk-doc
2024-03-05 23:52:04 +01:00
git describe --tags | sed 's/GTK_DOC_//;s/_/\./g;s/[^-]*-g/r&/;s/-/+/g'
2022-03-20 13:34:07 +01:00
}
prepare() {
2023-07-18 10:12:03 +02:00
cd gtk-doc
2022-03-20 13:34:07 +01:00
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
2024-03-05 23:52:04 +01:00
git apply -3 ../0001-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
}
2023-07-18 10:12:03 +02:00
# vim:set sw=2 sts=-1 et: