wok view perl-libwww/receipt @ rev 8647

Fixed xz post_remove.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Feb 15 19:35:52 2011 +0000 (2011-02-15)
parents
children e41bca1e9fcd
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-libwww"
4 VERSION="5.836"
5 CATEGORY="development"
6 SHORT_DESC="A set of Perl modules which provides a simple and consistent API to the WWW"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="perl-uri perl-html-parser"
9 BUILD_DEPENDS="perl $DEPENDS"
10 SOURCE="libwww-perl"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://search.cpan.org/dist/$SOURCE/"
13 WGET_URL="http://www.cpan.org/authors/id/G/GA/GAAS/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 perl Makefile.PL
20 make && make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 }