wok annotate intltool/receipt @ rev 11042

Add pciids. This is so pciutils doesn't have to download anything.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 16 07:54:18 2011 +0000 (2011-10-16)
parents 873acd44b973
children 68b94dfafd32
rev   line source
pankso@968 1 # SliTaz package receipt.
pankso@968 2
pankso@968 3 PACKAGE="intltool"
slaxemulator@6638 4 VERSION="0.41.1"
pankso@968 5 CATEGORY="development"
pankso@968 6 SHORT_DESC="Translation tools (PO, XML)."
pankso@968 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@6638 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@5574 9 DEPENDS="perl perl-xml-parser gettext"
pascal@1465 10 BUILD_DEPENDS="perl perl-xml-parser"
slaxemulator@6639 11 WEB_SITE="https://edge.launchpad.net/intltool"
slaxemulator@6638 12 WGET_URL="http://edge.launchpad.net/intltool/trunk/$VERSION/+download/$TARBALL"
pankso@968 13
pankso@968 14 # Rules to configure and make the package.
pankso@968 15 compile_rules()
pankso@968 16 {
pankso@968 17 cd $src
pankso@968 18 ./configure \
pankso@968 19 --prefix=/usr \
pascal@1465 20 $CONFIGURE_ARGS &&
pascal@1465 21 make &&
pankso@968 22 make DESTDIR=$PWD/_pkg install
pankso@968 23 }
pankso@968 24
pankso@968 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@968 26 genpkg_rules()
pankso@968 27 {
pankso@968 28 mkdir -p $fs/usr/share
pankso@968 29 cp -a $_pkg/usr/bin $fs/usr
pankso@968 30 cp -a $_pkg/usr/share/aclocal $fs/usr/share
pankso@968 31 cp -a $_pkg/usr/share/intltool $fs/usr/share
pankso@968 32 chmod +x $fs/usr/bin/*
pankso@968 33 }