wok view perl-pango/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents 20661c276bcf
children 15650f5d595b
line source
1 # SliTaz package receipt.
3 PACKAGE="perl-pango"
4 SOURCE="Pango"
5 VERSION="1.227"
6 CATEGORY="development"
7 SHORT_DESC="Layout and render international text."
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="LGPL2.1"
10 DEPENDS="perl pango perl-glib perl-cairo xcb-util"
11 BUILD_DEPENDS="$DEPENDS glib-dev pango-dev cairo-dev freetype-dev \
12 libpng-dev fontconfig-dev perl-extutils-depends perl-extutils-pkgconfig"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WEB_SITE="https://metacpan.org/release/Pango"
15 WGET_URL="https://cpan.metacpan.org/authors/id/X/XA/XAOC/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 perl Makefile.PL &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 rm -rf $pkgdir/installnone
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 }