wok view perl-libjson/receipt @ rev 19195

Add: BVI. Fast and lightweight binary (hex) editor.
author Leonardo Laporte <hackdorte@sapo.pt>
date Mon Jun 06 10:28:32 2016 -0300 (2016-06-06)
parents 6d1d3b3a1af1
children 20661c276bcf
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="http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/$TARBALL"
14 DEPENDS="perl"
15 BUILD_DEPENDS="perl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 perl Makefile.PL &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 }