wok view fontconfig/receipt @ rev 14579

Add Clonezilla
author Stanislas Leduc <shann@slitaz.org>
date Sat May 25 20:30:28 2013 +0200 (2013-05-25)
parents b60c56ce695d
children 3b4e4318134e
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 WEB_SITE="http://www.fontconfig.org/wiki/"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WGET_URL="http://www.freedesktop.org/software/fontconfig/release/$TARBALL"
12 DEPENDS="bzlib expat freetype libxml2"
13 BUILD_DEPENDS="libxml2-dev freetype-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --sysconfdir=/etc \
20 --localstatedir=/var \
21 --with-arch=$ARCH \
22 --disable-static \
23 --enable-iconv \
24 --enable-libxml2 \
25 --disable-docs \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$install install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/etc $fs
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 cp -a $install/usr/share $fs/usr
39 cp -a $install/var $fs
40 }