wok view perl-text-template/receipt @ rev 15001

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:48:05 2013 +0000 (2013-08-10)
parents 86d71949f3ad
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-text-template"
4 VERSION="1.44"
5 CATEGORY="development"
6 SHORT_DESC="Text::Template module is a Perl extension."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Text-Template"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://www.cpan.org/modules/"
14 WGET_URL="http://perl.plover.com/Template/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 perl Makefile.PL &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 }