wok annotate perl-unicode-map8/receipt @ rev 20682

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 27 17:42:10 2019 +0100 (2019-01-27)
parents 2d12ebd38be4
children 0007da09ae6d
rev   line source
pascal@1917 1 # SliTaz package receipt.
pascal@1917 2
pascal@1917 3 PACKAGE="perl-unicode-map8"
pascal@1917 4 VERSION="0.12"
pascal@1917 5 CATEGORY="development"
pascal@1917 6 SHORT_DESC="Unicode::Map8 module is a Perl extension."
pascal@1917 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@1917 9 DEPENDS="perl"
pascal@1917 10 BUILD_DEPENDS="perl"
pascal@1917 11 SOURCE="Unicode-Map8"
pascal@1917 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1917 13 WEB_SITE="http://cpan.org/"
pascal@20682 14 WGET_URL="https://metacpan.org/CPAN/authors/id/G/GA/GAAS/$TARBALL"
pascal@1917 15
pascal@1917 16 # Rules to configure and make the package.
pascal@1917 17 compile_rules()
pascal@1917 18 {
pascal@1917 19 cd $src
pascal@1917 20 perl Makefile.PL &&
pascal@1917 21 make &&
pascal@14702 22 make DESTDIR=$DESTDIR install
pascal@1917 23 }
pascal@1917 24
pascal@1917 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1917 26 genpkg_rules()
pascal@1917 27 {
pascal@1917 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
pascal@1917 30 }
pascal@1917 31