wok-next diff perl-expect/receipt @ rev 20599

More fix libtool
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Apr 17 00:06:41 2018 +0300 (2018-04-17)
parents 2d12ebd38be4
children 44d2daaccb67
line diff
     1.1 --- a/perl-expect/receipt	Fri Jun 07 18:46:07 2013 +0200
     1.2 +++ b/perl-expect/receipt	Tue Apr 17 00:06:41 2018 +0300
     1.3 @@ -1,32 +1,32 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="perl-expect"
     1.7 -VERSION="1.21"
     1.8 -CATEGORY="development"
     1.9 -SHORT_DESC="Expect.pm module is a Perl extension."
    1.10 +VERSION="1.33"
    1.11 +CATEGORY="perl"
    1.12 +SHORT_DESC="Expect - automate interactions with command line programs that \
    1.13 +expose a text terminal interface"
    1.14  MAINTAINER="pascal.bellard@slitaz.org"
    1.15 -LICENSE="GPL"
    1.16 -WEB_SITE="http://search.cpan.org/"
    1.17 -DEPENDS="perl-io-tty"
    1.18 +LICENSE="unknown"
    1.19 +WEB_SITE="https://metacpan.org/release/Expect"
    1.20  SUGGESTED="perl-io-stty"
    1.21 +
    1.22 +TARBALL="Expect-$VERSION.tar.gz"
    1.23 +WGET_URL="https://cpan.metacpan.org/authors/id/J/JA/JACOBY/$TARBALL"
    1.24 +
    1.25 +DEPENDS="perl"
    1.26  BUILD_DEPENDS="perl-io-tty"
    1.27 -SOURCE="Expect"
    1.28 -TARBALL="$SOURCE-$VERSION.tar.gz"
    1.29 -WGET_URL="http://search.cpan.org/CPAN/authors/id/R/RG/RGIERSIG/$TARBALL"
    1.30  
    1.31  # Rules to configure and make the package.
    1.32  compile_rules()
    1.33  {
    1.34 -	cd $src
    1.35  	perl Makefile.PL &&
    1.36 -	make &&
    1.37 -	make install DESTDIR=$DESTDIR
    1.38 +	make && make DESTDIR=$install install &&
    1.39 +
    1.40 +	chmod -R u+w $install
    1.41  }
    1.42  
    1.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.44  genpkg_rules()
    1.45  {
    1.46 -	mkdir -p $fs/usr
    1.47 -	cp -a $install/usr/lib $fs/usr
    1.48 +	copy @std
    1.49  }
    1.50 -