wok view perl-test-nowarnings/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 20661c276bcf
children 0fff78d6404b
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-test-nowarnings"
4 VERSION="1.04"
5 CATEGORY="development"
6 SHORT_DESC="Make sure you don't emit any warning while testing"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://metacpan.org/release/Test-NoWarnings"
10 SOURCE="Test-NoWarnings"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://metacpan.org/CPAN/authors/id/A/AD/ADAMK/$TARBALL"
14 DEPENDS="perl-test-tester"
15 BUILD_DEPENDS="perl-test-tester"
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 cd $src
27 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 cp -a $install/usr $fs
36 }