contrib/gtk-doc/Pkgfile

26 lines
639 B
Plaintext
Raw Normal View History

# Description: GTK+ Documentation Generator
# URL: https://wiki.gnome.org/DocumentationProject/GtkDoc
2023-08-18 19:43:22 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: docbook-xsl glib itstool python3-pygments
2012-06-14 17:29:54 +02:00
name=gtk-doc
version=1.33.2
2023-08-18 19:43:22 +02:00
release=2
2021-01-08 09:45:19 +01:00
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
2012-06-14 17:29:54 +02:00
build() {
2023-08-18 19:43:22 +02:00
meson setup gtk-doc-$version build \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D tests=false \
-D yelp_manual=false
2018-04-23 11:09:17 +02:00
2023-08-18 19:43:22 +02:00
meson compile -C build
DESTDIR=$PKG meson install -C build
2023-08-18 19:43:22 +02:00
#rm -r $PKG/usr/share/help
2012-06-14 17:29:54 +02:00
}