wok view intltool/receipt @ rev 2897

Add: Mitter (twitter client)
author Claudinei Pereira <claudinei@slitaz.org>
date Tue May 05 04:03:31 2009 +0000 (2009-05-05)
parents 30c92afb4a60
children bdb444d3c038
line source
1 # SliTaz package receipt.
3 PACKAGE="intltool"
4 VERSION="0.40.0"
5 CATEGORY="development"
6 SHORT_DESC="Translation tools (PO, XML)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 DEPENDS="perl perl-xml-parser"
10 BUILD_DEPENDS="perl perl-xml-parser"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/intltool/0.40/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/share/aclocal $fs/usr/share
31 cp -a $_pkg/usr/share/intltool $fs/usr/share
32 chmod +x $fs/usr/bin/*
33 }