wok view perl-extutils-pkgconfig/receipt @ rev 18117

Up: cookutils (741): add descriptions.txt to the bundle.tar.lzma
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jun 07 00:49:14 2015 +0300 (2015-06-07)
parents 2d12ebd38be4
children 20661c276bcf
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-extutils-pkgconfig"
4 SOURCE="ExtUtils-PkgConfig"
5 VERSION="1.14"
6 CATEGORY="development"
7 SHORT_DESC="Simplistic interface to pkg-config"
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="GPL"
10 DEPENDS="perl pkg-config"
11 BUILD_DEPENDS="perl pkg-config"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://search.cpan.org/~xaoc/ExtUtils-PkgConfig-1.14/"
14 WGET_URL="http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/$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 }