wok view perl-yaml/receipt @ rev 13950

add libwmf libwmf-dev
author ernia <monghitri@aruba.it>
date Tue Jan 29 21:00:25 2013 +0000 (2013-01-29)
parents
children 2d12ebd38be4
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-yaml"
4 VERSION="0.71"
5 CATEGORY="development"
6 SHORT_DESC="Perl/CPAN Module YAML : YAML Aint Markup Language tm"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="perl"
9 BUILD_DEPENDS="perl"
10 SOURCE="YAML"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://search.cpan.org/dist/YAML/"
13 WGET_URL="http://www.cpan.org/authors/id/A/AD/ADAMK/$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=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 # remove perllocal.pod and .packlist
30 find ${fs} -name perllocal.pod -delete
31 find ${fs} -name .packlist -delete
34 }