wok annotate perl-unicode-maputf8/receipt @ rev 22805

updated gawk (4.2.1 -> 5.0.1)
author Hans-G?nter Theisgen
date Tue Jan 28 10:03:39 2020 +0100 (2020-01-28)
parents 2d12ebd38be4
children ca4a422cce07
rev   line source
pascal@1916 1 # SliTaz package receipt.
pascal@1916 2
pascal@1916 3 PACKAGE="perl-unicode-maputf8"
pascal@1916 4 VERSION="1.11"
pascal@1916 5 CATEGORY="development"
pascal@1916 6 SHORT_DESC="Unicode::MapUTF8 module is a Perl extension."
pascal@1916 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@1916 9 DEPENDS="perl perl-unicode-string"
pascal@1916 10 BUILD_DEPENDS="perl"
pascal@1916 11 SOURCE="Unicode-MapUTF8"
pascal@1916 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1916 13 WEB_SITE="http://cpan.org/"
pascal@20682 14 WGET_URL="https://metacpan.org/CPAN/authors/id/S/SN/SNOWHARE/$TARBALL"
pascal@1916 15
pascal@1916 16 # Rules to configure and make the package.
pascal@1916 17 compile_rules()
pascal@1916 18 {
pascal@1916 19 cd $src
pascal@1916 20 perl Makefile.PL &&
pascal@1916 21 make &&
pascal@14702 22 make DESTDIR=$DESTDIR install
pascal@1916 23 }
pascal@1916 24
pascal@1916 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1916 26 genpkg_rules()
pascal@1916 27 {
pascal@1916 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
pascal@1916 30 }
pascal@1916 31