wok view perl-number-range/receipt @ rev 13734

Add xscavenger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 25 16:55:52 2012 +0100 (2012-12-25)
parents 2b7b8edd9d7d
children 2d12ebd38be4
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-number-range"
4 VERSION="0.10"
5 CATEGORY="development"
6 SHORT_DESC="Number::Range 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="Number-Range"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WGET_URL="http://search.cpan.org/CPAN/authors/id/L/LA/LARRYSH/$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 }