wok view gtk-doc/receipt @ rev 24005

cdrkit: force catalog sort weight
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 19 09:09:36 2021 +0000 (2021-01-19)
parents e588598708a9
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="gtk-doc"
4 VERSION="1.32"
5 CATEGORY="development"
6 SHORT_DESC="Generate API documentation from comments added to C code."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gtk.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/$VERSION/$TARBALL"
14 DEPENDS="py3k"
15 BUILD_DEPENDS="docbook-xml docbook-xsl itstool libxslt perl py3k"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --build=$HOST_SYSTEM \
24 --host=$HOST_SYSTEM &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/gtk-doc/html
33 cp -a $install/usr $fs
34 }