wok view perl-expect/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 20661c276bcf
children 15650f5d595b
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-expect"
4 VERSION="1.35"
5 CATEGORY="development"
6 SHORT_DESC="Perl extension Expect."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="https://metacpan.org/release/Expect"
11 SOURCE="Expect"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="https://www.cpan.org/modules/by-module/Expect/$TARBALL"
15 SUGGESTED="perl-io-stty"
16 DEPENDS="perl-io-tty"
17 BUILD_DEPENDS="perl-io-tty"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 perl Makefile.PL &&
23 make &&
24 make install DESTDIR=$DESTDIR
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 }