wok view fontconfig/receipt @ rev 17101

Add libnetfilter_conntrack
author Paul Issott <paul@slitaz.org>
date Fri Aug 29 20:56:19 2014 +0100 (2014-08-29)
parents 3b4e4318134e
children 195ccf2b5a37
line source
1 # SliTaz package receipt.
3 PACKAGE="fontconfig"
4 VERSION="2.10.91"
5 CATEGORY="x-window"
6 SHORT_DESC="Font configuration utilities and library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.fontconfig.org/wiki/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://www.freedesktop.org/software/fontconfig/release/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="bzlib expat freetype libxml2"
15 BUILD_DEPENDS="libxml2-dev freetype-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --with-arch=$ARCH \
24 --disable-static \
25 --enable-iconv \
26 --enable-libxml2 \
27 --disable-docs \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$install install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 cp -a $install/etc $fs
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib/*.so* $fs/usr/lib
40 cp -a $install/usr/share $fs/usr
41 cp -a $install/var $fs
42 }