wok-next view pixman/receipt @ rev 19725
Up lives (2.8.6)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu May 25 11:14:35 2017 +0200 (2017-05-25) |
parents | c9e270dd464f |
children | 9278a60d6895 |
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.34.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Pixel-manipulation library for X and Cairo"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://www.cairographics.org/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 #WGET_URL="$XORG_MIRROR/lib/$TARBALL"
14 WGET_URL="${WEB_SITE}releases/$TARBALL"
16 DEPENDS="glibc-base"
17 BUILD_DEPENDS="libpng-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --enable-gtk=no \
24 --enable-libpng \
25 --disable-static \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cook_copy_files *.so*
35 }