wok view perl-expect/receipt @ rev 16909

gtk+: update bdeps
author Yuri Pourre <yuripourre@gmail.com>
date Tue Jul 15 21:12:52 2014 -0300 (2014-07-15)
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 }