wok view perl-extutils-pkgconfig/receipt @ rev 24976

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 06 11:04:25 2022 +0000 (24 months ago)
parents 15650f5d595b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-extutils-pkgconfig"
4 SOURCE="ExtUtils-PkgConfig"
5 VERSION="1.16"
6 CATEGORY="development"
7 SHORT_DESC="Simplistic interface to pkg-config"
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="GPL"
10 DEPENDS="perl pkg-config"
11 BUILD_DEPENDS="perl pkg-config"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="https://metacpan.org/release/ExtUtils-PkgConfig"
14 WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$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 mkdir -p $fs/usr
34 cp -a $install/usr/lib $fs/usr
35 }