wok-current view perl-expect/receipt @ rev 20236
libpostgresqlclient, postgis: update deps
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Wed Mar 07 15:49:31 2018 +0100 (2018-03-07) | 
| parents | 47c639d2919a | 
| children | 20661c276bcf | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="perl-expect"
     4 VERSION="1.21"
     5 CATEGORY="development"
     6 SHORT_DESC="Expect.pm module is a Perl extension."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL"
     9 WEB_SITE="http://search.cpan.org/"
    10 DEPENDS="perl-io-tty"
    11 SUGGESTED="perl-io-stty"
    12 BUILD_DEPENDS="perl-io-tty"
    13 SOURCE="Expect"
    14 TARBALL="$SOURCE-$VERSION.tar.gz"
    15 WGET_URL="http://search.cpan.org/CPAN/authors/id/R/RG/RGIERSIG/$TARBALL"
    17 # Rules to configure and make the package.
    18 compile_rules()
    19 {
    20 	cd $src
    21 	perl Makefile.PL &&
    22 	make &&
    23 	make install DESTDIR=$DESTDIR
    24 }
    26 # Rules to gen a SliTaz package suitable for Tazpkg.
    27 genpkg_rules()
    28 {
    29 	mkdir -p $fs/usr
    30 	cp -a $install/usr/lib $fs/usr
    31 }