wok view fontconfig/receipt @ rev 15649

Up: hubbub (0.1.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Dec 10 16:06:02 2013 +0000 (2013-12-10)
parents 66feb7f9e198
children a06c764fccd3
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"
13 DEPENDS="bzlib expat freetype libxml2"
14 BUILD_DEPENDS="libxml2-dev freetype-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 --localstatedir=/var \
22 --with-arch=$ARCH \
23 --disable-static \
24 --enable-iconv \
25 --enable-libxml2 \
26 --disable-docs \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$install install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/etc $fs
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 cp -a $install/usr/share $fs/usr
40 cp -a $install/var $fs
41 }