wok view perl-algorithm-permute/receipt @ rev 13904

mercurial: up 2.4.2
author Samuel Trassare <samuel_trassare@juno.com>
date Sun Jan 20 19:26:15 2013 -0800 (2013-01-20)
parents 2b7b8edd9d7d
children 2d12ebd38be4
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-algorithm-permute"
4 VERSION="0.12"
5 CATEGORY="development"
6 SHORT_DESC="Algorithm::Permute module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://search.cpan.org/"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Algorithm-Permute"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="http://search.cpan.org/CPAN/authors/id/E/ED/EDPRATOMO/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 perl Makefile.PL &&
20 make &&
21 make install DESTDIR=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/lib $fs/usr
29 }