wok view perl-netaddr-ip/receipt @ rev 25074

Add python-ipaddress
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jun 13 19:39:39 2022 +0000 (23 months ago)
parents 3dedb87012b8
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-netaddr-ip"
4 VERSION="4.079"
5 CATEGORY="development"
6 SHORT_DESC="NetAddr::IP module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Artistic"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="NetAddr-IP"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/dist/NetAddr-IP"
14 WGET_URL="https://cpan.metacpan.org/authors/id/M/MI/MIKER/$TARBALL"
16 current_version()
17 {
18 wget -O - $WEB_SITE 2>/dev/null | \
19 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
20 }
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 perl Makefile.PL &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/usr $fs/
34 }