wok-next view pixman/receipt @ rev 19659

Up xorg-xf86-video-fbdev, xorg-xf86-video-intel
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Mar 05 05:50:58 2017 +0200 (2017-03-05)
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 }