wok-undigest annotate perl-lwp-useragent/receipt @ rev 543

busybox/httpd: check system passwords (if FEATURE_HTTPD_AUTH_MD5)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 05 19:54:07 2011 +0100 (2011-11-05)
parents
children
rev   line source
pascal@529 1 # SliTaz package receipt.
pascal@529 2
pascal@529 3 PACKAGE="perl-lwp-useragent"
pascal@529 4 VERSION="6.03"
pascal@529 5 CATEGORY="development"
pascal@529 6 SHORT_DESC="LWP::UserAgent module is a Perl extension."
pascal@529 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@529 8 DEPENDS="perl"
pascal@529 9 BUILD_DEPENDS="perl"
pascal@529 10 SOURCE="libwww-perl"
pascal@529 11 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@529 12 WEB_SITE="http://cpan.org/"
pascal@529 13 WGET_URL="http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL"
pascal@529 14
pascal@529 15 # Rules to configure and make the package.
pascal@529 16 compile_rules()
pascal@529 17 {
pascal@529 18 cd $src
pascal@529 19 perl Makefile.PL &&
pascal@529 20 make &&
pascal@529 21 make DESTDIR=$PWD/_pkg install
pascal@529 22 }
pascal@529 23
pascal@529 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@529 25 genpkg_rules()
pascal@529 26 {
pascal@529 27 mkdir -p $fs/usr
pascal@529 28 cp -a $_pkg/usr/lib $fs/usr
pascal@529 29 }
pascal@529 30