wok view perl-class-accessor/receipt @ rev 16800

Up pcmanfm (1.2.1)
author Paul Issott <paul@slitaz.org>
date Fri Jul 04 18:11:47 2014 +0100 (2014-07-04)
parents 58d904b1eded
children 573d4c473481
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-class-accessor"
4 VERSION="0.34"
5 CATEGORY="development"
6 SHORT_DESC="Automated accessor generation"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL"
9 DEPENDS="perl"
10 SOURCE="Class-Accessor"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://search.cpan.org/dist/Class-Accessor/"
13 WGET_URL="http://www.cpan.org/authors/id/K/KA/KASEI/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 perl Makefile.PL &&
20 make &&
21 make DESTDIR=$DESTDIR install
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 }