wok view perl-net-dns/receipt @ rev 24143

Add ventoy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 16 17:16:48 2021 +0000 (2021-11-16)
parents 551efbe32805
children 34acc89bf1e5
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-net-dns"
4 VERSION="1.23"
5 CATEGORY="development"
6 SHORT_DESC="Perl extension Net::DNS."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/release/Net-DNS"
11 SOURCE="Net-DNS"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/$TARBALL"
15 DEPENDS="perl perl-io-socket-inet6"
16 BUILD_DEPENDS="perl perl-io-socket-inet6"
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/release-name/!d;s|.*-v*||;s|<.*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 yes n | perl Makefile.PL &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/lib $fs/usr
37 }