wok-next view intltool/receipt @ rev 5614

catalyst: fix compile with 2.6.33.4 and WGET_URL
author Rohit Joshi <jozee@slitaz.org>
date Thu May 20 10:43:52 2010 -0400 (2010-05-20)
parents bdb444d3c038
children 873acd44b973
line source
1 # SliTaz package receipt.
3 PACKAGE="intltool"
4 VERSION="0.40.6"
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 gettext"
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 }