wok view libwww-perl/receipt @ rev 24825

updated libsdl2-ttf and libsdl2-ttf-dev (2.0.15 -> 2.0.18)
author Hans-G?nter Theisgen
date Wed Mar 23 17:04:32 2022 +0100 (2022-03-23)
parents 4c03e8b3a67f
children 00dfb3b8e79d
line source
1 # SliTaz package receipt.
3 PACKAGE="libwww-perl"
4 VERSION="6.43"
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 WEB_SITE="https://metacpan.org/dist/libwww-perl"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/$TARBALL"
14 DEPENDS="perl-io perl-module-metadata"
15 BUILD_DEPENDS="$DEPENDS"
17 current_version()
18 {
19 wget -O - $WEB_SITE 2>/dev/null | \
20 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 perl Makefile.PL &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }