wok-next view pixman/receipt @ rev 19766

Up cookutils.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jun 12 11:40:38 2017 +0300 (2017-06-12)
parents 1ee3a39efb8c
children
line source
1 # SliTaz package receipt v2.
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="${WEB_SITE}releases/$TARBALL"
14 TARBALL_MD5="e80ebae4da01e77f68744319f01d52a3"
16 BUILD_DEPENDS="libpng-dev"
17 SPLIT="pixman-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 case $PACKAGE in
35 pixman) copy @std;;
36 *-dev) copy @dev;;
37 esac
38 }