blob: 8d34cf967ebd6b57f004d20a43f195e97f348bbd (
plain)
1 # Description: gtk documentation system.
2 # URL: http://www.gtk.org/gtk-doc/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: docbook-xsl itstool openjade python3-six python3-pygments
5
6 name=gtk-doc
7 version=1.32
8 release=2
9 source=(https://download.gnome.org/sources/$name/$version/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18
19 rm -r $PKG/usr/share/help
20 }
|