# HG changeset patch # User Christophe Lincoln # Date 1214820882 -7200 # Node ID 30c92afb4a60e8cec4df84278eb848b6ce1b0e32 # Parent ab2cace845aee0290207b971c553794ffebac7d8 Add intltool (new build dep for PCmanFM) diff -r ab2cace845ae -r 30c92afb4a60 intltool/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/intltool/receipt Mon Jun 30 12:14:42 2008 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="intltool" +VERSION="0.40.0" +CATEGORY="development" +SHORT_DESC="Translation tools (PO, XML)." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +DEPENDS="perl perl-xml-parser" +WEB_SITE="http://www.gnome.org/" +WGET_URL="http://ftp.gnome.org/pub/gnome/sources/intltool/0.40/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS + make + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/share/aclocal $fs/usr/share + cp -a $_pkg/usr/share/intltool $fs/usr/share + chmod +x $fs/usr/bin/* +}