wok view perl-libjson/receipt @ rev 24975

Update some wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 02 16:22:04 2022 +0000 (2022-05-02)
parents 15650f5d595b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-libjson"
4 SOURCE="JSON"
5 VERSION="2.90"
6 CATEGORY="development"
7 SHORT_DESC="JSON (JavaScript Object Notation) encoder/decoder"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://metacpan.org/release/JSON"
12 WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA/$TARBALL"
14 DEPENDS="perl"
15 BUILD_DEPENDS="perl"
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 perl Makefile.PL &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 }