wok-undigest view gnome-doc-utils/receipt @ rev 34

Add gnome-doc-utils
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 11 00:31:41 2010 +0200 (2010-04-11)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-doc-utils"
4 VERSION="0.16.1"
5 CATEGORY="misc"
6 SHORT_DESC="Documentation utilities for Gnome"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libxml2 libxslt python libxml2-python"
9 BUILD_DEPENDS="libxml2-dev libxslt-dev libxslt libxml2-python"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/gnome-doc-utils/0.16/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --disable-scrollkeeper \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin $fs/usr/share
32 cp -a $_pkg/usr/bin/gnome-doc-tool $fs/usr/bin
33 cp -a $_pkg/usr/bin/xml2po $fs/usr/bin
34 cp -a $_pkg/usr/share/xml2po $fs/usr/share
35 cp -a $_pkg/usr/share/xml $fs/usr/share
36 }