2021-01-23 19:21:50 +11:00
|
|
|
# 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
|
2021-01-23 19:21:50 +11:00
|
|
|
# Depends on: docbook-xsl glib itstool python3-pygments
|
2012-06-15 01:29:54 +10:00
|
|
|
|
|
|
|
name=gtk-doc
|
2024-03-06 19:37:19 +01:00
|
|
|
version=1.34.0
|
|
|
|
release=1
|
2021-01-08 19:45:19 +11:00
|
|
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
2012-06-15 01:29:54 +10: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 19:09:17 +10:00
|
|
|
|
2023-08-18 19:43:22 +02:00
|
|
|
meson compile -C build
|
|
|
|
DESTDIR=$PKG meson install -C build
|
2013-11-20 23:54:00 +11:00
|
|
|
|
2023-08-18 19:43:22 +02:00
|
|
|
#rm -r $PKG/usr/share/help
|
2012-06-15 01:29:54 +10:00
|
|
|
}
|