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

Up: diffutils 3.3
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 14 22:41:11 2015 +0000 (2015-02-14)
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 }