wok view pixman/receipt @ rev 14817

Up: libexo* (0.8.0)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jul 17 13:43:00 2013 +0200 (2013-07-17)
parents 7ae8c5d88295
children 10e6c72b2c15
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.28.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Pixman library"
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.cairographics.org/"
10 #WGET_URL="$XORG_MIRROR/lib/$TARBALL"
11 WGET_URL="${WEB_SITE}releases/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="libpng-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-gtk=no \
22 --enable-libpng \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }