wok-next view pango/receipt @ rev 19739

Up afpfs-ng and aiksaurus to v2
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Jun 05 04:30:15 2017 +0000 (2017-06-05)
parents 124c3a7da04f
children f463de72afe3
line source
1 # SliTaz package receipt.
3 PACKAGE="pango"
4 VERSION="1.40.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Layout and rendering of internationalized text"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.pango.org/"
10 HOST_ARCH="i486 arm"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:4}/$TARBALL"
15 DEPENDS="bzlib cairo fontconfig freetype glib harfbuzz libffi liblzma libpng \
16 libxcb libxml2 pcre pixman xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext \
17 xorg-libXft xorg-libXrender zlib"
18 BUILD_DEPENDS="harfbuzz-dev xorg-libXft-dev cairo-dev gobject-introspection-dev"
19 BUILD_DEPENDS_arm="cairo-dev libxml2-dev xorg-libXft-dev"
21 # Handle cross compilation
22 case "$ARCH" in
23 arm*)
24 BUILD_DEPENDS=$BUILD_DEPENDS_arm
25 export LIBTOOL=${HOST_SYSTEM}-libtool
26 ARCH_ARGS="--enable-introspection=no" ;;
27 esac
29 # Rules to configure and make the package.
30 compile_rules()
31 {
32 ./configure \
33 --sysconfdir=/etc \
34 $CONFIGURE_ARGS $ARCH_ARGS &&
35 make && make install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 cook_copy_folders bin
42 cook_copy_files *.so*
43 }