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

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
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 }