wok view pixman/receipt @ rev 11450

zlib: enable LFS patch
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Dec 17 10:53:09 2011 +0100 (2011-12-17)
parents e8bc386710e9
children 7e91486a25fd
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.22.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Pixman library."
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="perl"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.cairographics.org/"
11 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --enable-gtk=no \
19 $CONFIGURE_ARGS &&
20 make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }