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

nss: fix include path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 12 11:26:20 2010 +0200 (2010-07-12)
parents dd8bb4875d43
children 7d810eeb59db
line source
1 # SliTaz package receipt.
3 PACKAGE="gnome-doc-utils"
4 VERSION="0.12.2"
5 CATEGORY="misc"
6 SHORT_DESC="Documentation utilities for Gnome"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libxml2 libxslt python"
9 BUILD_DEPENDS="libxml2-dev libxslt-dev libxslt"
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.12/$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 }