wok view pixman/receipt @ rev 12509

Up: pixman (0.25.2) + clean receipt
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 24 23:23:22 2012 +0200 (2012-04-24)
parents b764c5b7e0b7
children 7ae8c5d88295
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.25.2"
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 $install/usr/lib/*.so* $fs/usr/lib
28 }