wok annotate perl-gssapi/receipt @ rev 2347

Mysql, postgresql, openldap: define DATABASE_FILES
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 04 10:16:20 2009 +0000 (2009-03-04)
parents 81cee2f5e8e8
children c1550cd1e389
rev   line source
pascal@1666 1 # SliTaz package receipt.
pascal@1666 2
pascal@1666 3 PACKAGE="perl-gssapi"
pascal@1666 4 VERSION="0.26"
pascal@1666 5 CATEGORY="development"
pascal@1666 6 SHORT_DESC="GSSAPI module is a Perl extension."
pascal@1666 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1666 8 DEPENDS="perl"
pascal@1666 9 BUILD_DEPENDS="perl krb5 krb5-dev"
pascal@1666 10 SOURCE="GSSAPI"
pascal@1666 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1743 12 WEB_SITE="http://cpan.org/"
pascal@1666 13 WGET_URL="http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/$TARBALL"
pascal@1666 14
pascal@1666 15 # Rules to configure and make the package.
pascal@1666 16 compile_rules()
pascal@1666 17 {
pascal@1666 18 cd $src
pascal@1666 19 perl Makefile.PL &&
pascal@1666 20 make &&
pascal@1666 21 make DESTDIR=$PWD/_pkg install
pascal@1666 22 }
pascal@1666 23
pascal@1666 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1666 25 genpkg_rules()
pascal@1666 26 {
pascal@1666 27 mkdir -p $fs/usr
pascal@1666 28 cp -a $_pkg/usr/lib $fs/usr
pascal@1666 29 }
pascal@1666 30