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

Up ufraw (0.22)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 31 15:04:44 2019 +0200 (2019-03-31)
parents 20661c276bcf
children 15650f5d595b
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-extutils-pkgconfig"
4 SOURCE="ExtUtils-PkgConfig"
5 VERSION="1.16"
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="https://metacpan.org/release/ExtUtils-PkgConfig"
14 WGET_URL="https://cpan.metacpan.org/CPAN/authors/id/X/XA/XAOC/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
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 }