wok view perltidy/receipt @ rev 18400

open-vm-tools: missing deps
author Nathan Neulinger <nneul@neulinger.org>
date Sat Sep 19 03:36:38 2015 +0000 (2015-09-19)
parents 74d144f735b5
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="perltidy"
4 VERSION="20140711"
5 CATEGORY="development"
6 SHORT_DESC="Perl Code Formatter"
7 MAINTAINER="nneul@neulinger.org"
8 LICENSE="GPL"
9 DEPENDS="perl"
10 BUILD_DEPENDS="perl"
11 SOURCE="Perl-Tidy"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://search.cpan.org/dist/Perl-Tidy/"
14 WGET_URL="http://www.cpan.org/authors/id/S/SH/SHANCOCK/$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/bin $fs/usr
30 cp -a $install/usr/lib $fs/usr
32 # remove perllocal.pod and .packlist
33 find ${fs} -name perllocal.pod -delete
34 find ${fs} -name .packlist -delete
35 }