wok-next annotate fontconfig/receipt @ rev 15910
Up: yad (0.26.0) Bunch of new function and custom icons for buttons :)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Feb 15 13:08:13 2014 +0100 (2014-02-15) |
parents | 66feb7f9e198 |
children | a06c764fccd3 |
rev | line source |
---|---|
pankso@21 | 1 # SliTaz package receipt. |
pankso@21 | 2 |
pankso@21 | 3 PACKAGE="fontconfig" |
al@14225 | 4 VERSION="2.10.91" |
pankso@21 | 5 CATEGORY="x-window" |
al@14225 | 6 SHORT_DESC="Font configuration utilities and library" |
pankso@21 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15593 | 8 LICENSE="MIT" |
al@14225 | 9 WEB_SITE="http://www.fontconfig.org/wiki/" |
al@14225 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
al@14225 | 11 WGET_URL="http://www.freedesktop.org/software/fontconfig/release/$TARBALL" |
al@14225 | 12 |
al@14225 | 13 DEPENDS="bzlib expat freetype libxml2" |
pankso@1812 | 14 BUILD_DEPENDS="libxml2-dev freetype-dev" |
pankso@21 | 15 |
pankso@21 | 16 # Rules to configure and make the package. |
pankso@21 | 17 compile_rules() |
pankso@21 | 18 { |
pankso@3852 | 19 ./configure \ |
pankso@3852 | 20 --sysconfdir=/etc \ |
pankso@3852 | 21 --localstatedir=/var \ |
pankso@10293 | 22 --with-arch=$ARCH \ |
al@14225 | 23 --disable-static \ |
al@14225 | 24 --enable-iconv \ |
al@14225 | 25 --enable-libxml2 \ |
al@14225 | 26 --disable-docs \ |
pankso@3852 | 27 $CONFIGURE_ARGS && |
al@14225 | 28 make && |
al@14225 | 29 make DESTDIR=$install install |
pankso@21 | 30 } |
pankso@21 | 31 |
pankso@21 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@21 | 33 genpkg_rules() |
pankso@21 | 34 { |
pankso@21 | 35 mkdir -p $fs/usr/lib |
al@14225 | 36 cp -a $install/etc $fs |
al@14225 | 37 cp -a $install/usr/bin $fs/usr |
al@14225 | 38 cp -a $install/usr/lib/*.so* $fs/usr/lib |
al@14225 | 39 cp -a $install/usr/share $fs/usr |
al@14225 | 40 cp -a $install/var $fs |
pankso@21 | 41 } |