wok view gnome-doc-utils/receipt @ rev 6741

Up: gnome-doc-utils to 0.16.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Oct 16 21:23:43 2010 +0000 (2010-10-16)
parents 7d810eeb59db
children cc6aaba4361c
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 pkg-config intltool"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --infodir=/usr/share/info \
20 --disable-scrollkeeper \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin $fs/usr/share/locale
30 cp -a $_pkg/usr/bin/gnome-doc-tool $fs/usr/bin
31 cp -a $_pkg/usr/bin/xml2po $fs/usr/bin
32 cp -a $_pkg/usr/share/xml2po $fs/usr/share
33 cp -a $_pkg/usr/share/xml $fs/usr/share
35 }