wok view perl-libjson/receipt @ rev 25864
ncurses-dev: fix pkgconfig path
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Aug 30 13:06:18 2025 +0000 (7 days ago) |
parents | e717a4953b0e |
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/dist/JSON"
12 WGET_URL="https://cpan.metacpan.org/authors/id/M/MA/MAKAMAKA/$TARBALL"
14 DEPENDS="perl"
15 BUILD_DEPENDS="perl"
17 # What is the latest version available today?
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 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 }