wok annotate perl-authen-sasl/receipt @ rev 11440

raptor: fix build (thanks godane)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Fri Dec 16 15:42:01 2011 +0100 (2011-12-16)
parents 1bea3c065ea9
children 2d12ebd38be4
rev   line source
pascal@1667 1 # SliTaz package receipt.
pascal@1667 2
pascal@1667 3 PACKAGE="perl-authen-sasl"
pascal@1667 4 VERSION="2.11"
pascal@1667 5 CATEGORY="development"
pascal@1667 6 SHORT_DESC="Authen::SASL module is a Perl extension."
pascal@1667 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1667 8 DEPENDS="perl perl-digest-hmac perl-gssapi"
pascal@1667 9 BUILD_DEPENDS="perl perl-digest-hmac perl-gssapi"
pascal@1667 10 SOURCE="Authen-SASL"
pascal@1667 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1743 12 WEB_SITE="http://cpan.org/"
pascal@1667 13 WGET_URL="http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/$TARBALL"
pascal@1667 14
pascal@1667 15 # Rules to configure and make the package.
pascal@1667 16 compile_rules()
pascal@1667 17 {
pascal@1667 18 cd $src
pascal@1667 19 perl Makefile.PL &&
pascal@1667 20 make &&
pascal@1667 21 make DESTDIR=$PWD/_pkg install
pascal@1667 22 }
pascal@1667 23
pascal@1667 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1667 25 genpkg_rules()
pascal@1667 26 {
pascal@1667 27 mkdir -p $fs/usr
pascal@1667 28 cp -a $_pkg/usr/lib $fs/usr
pascal@1667 29 }
pascal@1667 30