wok view perl-uri/receipt @ rev 23412

updated perl-uri (1.58 -> 1.76)
author Hans-G?nter Theisgen
date Wed Apr 01 07:18:17 2020 +0100 (2020-04-01)
parents 20661c276bcf
children 15650f5d595b
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-uri"
4 VERSION="1.76"
5 CATEGORY="development"
6 SHORT_DESC="Perl extensions URI::Escape, URI::File, URI::ldap and URI::URL."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/release/URI"
11 SOURCE="URI"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.cpan.org/modules/by-module/URI/$TARBALL"
15 PROVIDE="perl-uri-escape perl-uri-file perl-uri-ldap perl-uri-url"
16 DEPENDS="perl"
17 BUILD_DEPENDS="perl"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 perl Makefile.PL &&
23 make &&
24 make install DESTDIR=$DESTDIR
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 }