# HG changeset patch # User Hans-G?nter Theisgen # Date 1585645205 -3600 # Node ID de314cb7fe1ed8671927bd7f27a25d6cd2d25d2f # Parent 8c8cdcaec90353974e0c8fd4390544b0d34550e7 updated perl-io-stty (0.03 -> 0.04) diff -r 8c8cdcaec903 -r de314cb7fe1e perl-io-stty/receipt --- a/perl-io-stty/receipt Tue Mar 31 09:53:02 2020 +0100 +++ b/perl-io-stty/receipt Tue Mar 31 10:00:05 2020 +0100 @@ -1,29 +1,30 @@ # SliTaz package receipt. PACKAGE="perl-io-stty" -VERSION="0.03" +VERSION="0.04" CATEGORY="development" -SHORT_DESC="IO::Stty module is a Perl extension." +SHORT_DESC="Perl extension IO::Stty." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/" +WEB_SITE="https://metacpan.org/release/IO-Stty" + +SOURCE="IO-Stty" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="https://www.cpan.org/modules/by-module/IO/$TARBALL" + DEPENDS="perl" BUILD_DEPENDS="perl" -SOURCE="IO-Stty" -TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://metacpan.org/CPAN/authors/id/T/TO/TODDR/$TARBALL" # Rules to configure and make the package. compile_rules() { - cd $src - perl Build.PL && - ./Build --destdir $DESTDIR install + perl Makefile.PL && + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cp -a $install/usr $fs } -