wok view fontconfig/receipt @ rev 14429

fix openjpeg-dev, add openjpeg2, rebuild mupdf, move from undigest djvulibre, and finally add fbpdf-mupdf
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 24 14:06:49 2013 +0000 (2013-04-24)
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 }