wok annotate perl-xml-simple/receipt @ rev 1511

Update some BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 05 23:16:15 2008 +0000 (2008-10-05)
parents 17a39e4461e4
children 2d12ebd38be4
rev   line source
pankso@18 1 # SliTaz package receipt.
pankso@18 2
pankso@18 3 PACKAGE="perl-xml-simple"
pankso@18 4 VERSION="2.18"
pankso@204 5 CATEGORY="development"
pankso@18 6 SHORT_DESC="XML::Simple module is used to read and write XML."
pankso@18 7 MAINTAINER="pankso@slitaz.org"
pankso@18 8 DEPENDS="perl"
pascal@1511 9 BUILD_DEPENDS="perl"
pankso@18 10 SOURCE="XML-Simple"
pankso@18 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pankso@18 12 WEB_SITE="http://cpan.org/"
pankso@18 13 WGET_URL="http://cpan.org/authors/id/G/GR/GRANTM/$TARBALL"
pankso@18 14
pankso@18 15 # Rules to configure and make the package.
pankso@18 16 compile_rules()
pankso@18 17 {
pankso@18 18 cd $src
pascal@1511 19 perl Makefile.PL &&
pascal@1511 20 make &&
pankso@18 21 make DESTDIR=$PWD/_pkg install
pankso@18 22 }
pankso@18 23
pankso@18 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@18 25 genpkg_rules()
pankso@18 26 {
pankso@18 27 mkdir -p $fs/usr
pankso@18 28 cp -a $_pkg/usr/lib $fs/usr
pankso@18 29 }
pankso@18 30