wok annotate perl-io-multiplex/receipt @ rev 4029

Update: h8300-gcc3 (add PROVIDE)
author Matthew Sheets <rcx@zoominternet.net>
date Sat Sep 05 15:03:56 2009 +0000 (2009-09-05)
parents
children 2d12ebd38be4
rev   line source
pascal@1194 1 # SliTaz package receipt.
pascal@1194 2
pascal@1194 3 PACKAGE="perl-io-multiplex"
pascal@1194 4 VERSION="1.09"
pascal@1194 5 CATEGORY="development"
pascal@1194 6 SHORT_DESC="IO::Multiplex module is a Perl extension."
pascal@1194 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1194 8 DEPENDS="perl"
pascal@1194 9 BUILD_DEPENDS="perl"
pascal@1194 10 SOURCE="IO-Multiplex"
pascal@1194 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1194 12 WEB_SITE="http://cpan.org/"
pascal@1194 13 WGET_URL="http://cpan.org/authors/id/B/BB/BBB/$TARBALL"
pascal@1194 14
pascal@1194 15 # Rules to configure and make the package.
pascal@1194 16 compile_rules()
pascal@1194 17 {
pascal@1194 18 cd $src
pascal@1194 19 perl Makefile.PL
pascal@1194 20 make
pascal@1194 21 make DESTDIR=$PWD/_pkg install
pascal@1194 22 }
pascal@1194 23
pascal@1194 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1194 25 genpkg_rules()
pascal@1194 26 {
pascal@1194 27 mkdir -p $fs/usr
pascal@1194 28 cp -a $_pkg/usr/lib $fs/usr
pascal@1194 29 }
pascal@1194 30