wok annotate perl-io-scalar/receipt @ rev 22006

tar-lang: condition corrected
author Hans-G?nter Theisgen
date Fri Oct 18 17:47:01 2019 +0100 (2019-10-18)
parents 2d12ebd38be4
children ca4a422cce07
rev   line source
pascal@1672 1 # SliTaz package receipt.
pascal@1672 2
pascal@1672 3 PACKAGE="perl-io-scalar"
pascal@1672 4 VERSION="2.110"
pascal@1672 5 CATEGORY="development"
pascal@1672 6 SHORT_DESC="IO::Scalar module is a Perl extension."
pascal@1672 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14702 8 LICENSE="GPL"
pascal@1672 9 DEPENDS="perl"
pascal@1672 10 BUILD_DEPENDS="perl"
pascal@1672 11 SOURCE="IO-stringy"
pascal@1672 12 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@1743 13 WEB_SITE="http://cpan.org/"
pascal@20682 14 WGET_URL="https://metacpan.org/CPAN/authors/id/D/DS/DSKOLL/$TARBALL"
pascal@1672 15
pascal@1672 16 # Rules to configure and make the package.
pascal@1672 17 compile_rules()
pascal@1672 18 {
pascal@1672 19 cd $src
pascal@1672 20 perl Makefile.PL &&
pascal@1672 21 make &&
pascal@14702 22 make DESTDIR=$DESTDIR install
pascal@1672 23 }
pascal@1672 24
pascal@1672 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1672 26 genpkg_rules()
pascal@1672 27 {
pascal@1672 28 mkdir -p $fs/usr
pascal@14702 29 cp -a $install/usr/lib $fs/usr
pascal@1672 30 }
pascal@1672 31