wok view perl-xml-parser/receipt @ rev 18761

Up tazpkg(898)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Dec 29 22:01:51 2015 +0200 (2015-12-29)
parents 3ff5b63831c2
children ebd13d88e221
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-xml-parser"
4 VERSION="2.41"
5 CATEGORY="development"
6 SHORT_DESC="XML::Parser module is a Perl extension interface to XML expat."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL"
9 DEPENDS="perl expat"
10 BUILD_DEPENDS="perl expat-dev"
11 SOURCE="XML-Parser"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://search.cpan.org/dist/XML-Parser/"
14 WGET_URL="http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/$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 }