wok annotate perl-xml-entities/receipt @ rev 9264

unfs3: fix BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 15 12:26:04 2011 +0100 (2011-03-15)
parents ad786a87b22e
children fe7e875f7d99
rev   line source
pascal@2067 1 # SliTaz package receipt.
pascal@2067 2
pascal@2067 3 PACKAGE="perl-xml-entities"
pascal@2067 4 VERSION="0.0307"
pascal@2067 5 CATEGORY="development"
pascal@2067 6 SHORT_DESC="XML::Entities module is a Perl extension."
pascal@2067 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@2067 8 DEPENDS="perl"
slaxemulator@9013 9 BUILD_DEPENDS="perl perl-lwp-useragent perl-uri"
pascal@2067 10 SOURCE="XML-Entities"
pascal@2067 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@2243 12 WEB_SITE="http://www.cpan.org/modules/"
pascal@2067 13 WGET_URL="http://search.cpan.org/CPAN/authors/id/S/SI/SIXTEASE/$TARBALL"
pascal@2067 14
pascal@2067 15 # Rules to configure and make the package.
pascal@2067 16 compile_rules()
pascal@2067 17 {
pascal@2067 18 cd $src
pascal@2067 19 perl Makefile.PL &&
pascal@2067 20 make &&
pascal@2067 21 make DESTDIR=$PWD/_pkg install
pascal@2067 22 }
pascal@2067 23
pascal@2067 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@2067 25 genpkg_rules()
pascal@2067 26 {
pascal@2067 27 mkdir -p $fs/usr
pascal@2067 28 cp -a $_pkg/usr/lib $fs/usr
pascal@2067 29 }
pascal@2067 30