wok view pixman/receipt @ rev 17992

Add few descriptions (from pkgs.org)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 23 16:47:39 2015 +0300 (2015-04-23)
parents 4dcf150f8956
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.32.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Pixel-manipulation library for X and Cairo"
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 }