wok view pixman/receipt @ rev 14155

Up cookutils-daemon (3.1.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 05 21:56:58 2013 +0100 (2013-03-05)
parents 7e91486a25fd
children 66feb7f9e198
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.26.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"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --enable-gtk=no \
20 $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }