wok view pixman/receipt @ rev 17579

Fix: some less hexchat depends
author Alexander Medvedev <devl547@gmail.com>
date Sun Feb 08 12:33:37 2015 +0000 (2015-02-08)
parents 10e6c72b2c15
children c9e270dd464f
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.32.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Pixman library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cairographics.org/"
11 #WGET_URL="$XORG_MIRROR/lib/$TARBALL"
12 WGET_URL="${WEB_SITE}releases/$TARBALL"
13 HOST_ARCH="i486 arm"
15 DEPENDS="glibc-base"
16 BUILD_DEPENDS="libpng-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --enable-gtk=no \
23 --enable-libpng \
24 $CONFIGURE_ARGS &&
25 make &&
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }