wok view libwww-perl/receipt @ rev 20954

gcc83: typos (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 03 17:15:30 2019 +0100 (2019-03-03)
parents
children 4c03e8b3a67f
line source
1 # SliTaz package receipt.
3 PACKAGE="libwww-perl"
4 VERSION="6.36"
5 CATEGORY="development"
6 SHORT_DESC="a simple and consistent API to the WWW in PERL"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 DEPENDS="perl-module-metadata perl-io"
10 BUILD_DEPENDS="$DEPENDS"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://cpan.org/"
13 WGET_URL="https://cpan.metacpan.org/authors/id/E/ET/ETHER/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 perl Makefile.PL &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/lib $fs/usr
28 }