wok view pixman/receipt @ rev 22434

Add sshrc (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 21 12:20:01 2019 +0100 (2019-12-21)
parents a78610b2eb47
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="pixman"
4 VERSION="0.38.4"
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="http://pixman.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://cairographics.org/releases/$TARBALL"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="libpng-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --enable-gtk=no \
24 --enable-libpng \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }