wok annotate perl-datetime-format-w3cdtf/receipt @ rev 20283

security fixes from 0.3.1.9 (2017 Dec 1) and 0.3.1.10 (March 3)... further info: https://blog.torproject.org/new-stable-tor-releases-security-fixes-and-dos-prevention-03210-03110-02915
author Erkan Yilmaz <erkan@slitaz.org>
date Tue Mar 27 11:09:07 2018 +0000 (2018-03-27)
parents 84e5f2e10ea6
children 20661c276bcf
rev   line source
pascal@9281 1 # SliTaz package receipt.
pascal@9281 2
pascal@9281 3 PACKAGE="perl-datetime-format-w3cdtf"
pascal@9281 4 VERSION="0.06"
pascal@9281 5 CATEGORY="development"
pascal@9281 6 SHORT_DESC="DateTime::Format::W3CDTF module is a Perl extension."
pascal@9281 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@9281 9 DEPENDS="perl"
pascal@9281 10 BUILD_DEPENDS="perl"
pascal@9281 11 SOURCE="DateTime-Format-W3CDTF"
pascal@9281 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@9281 13 WEB_SITE="http://cpan.org/"
pascal@9281 14 WGET_URL="http://search.cpan.org/CPAN/authors/id/G/GW/GWILLIAMS/$TARBALL"
pascal@9281 15
pascal@9281 16 # Rules to configure and make the package.
pascal@9281 17 compile_rules()
pascal@9281 18 {
pascal@9281 19 cd $src
pascal@9281 20 perl Makefile.PL &&
pascal@9281 21 make &&
pascal@14702 22 make DESTDIR=$DESTDIR install
pascal@9281 23 }
pascal@9281 24
pascal@9281 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@9281 26 genpkg_rules()
pascal@9281 27 {
pascal@9281 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
pascal@9281 30 }
pascal@9281 31