wok view xorg-libXft/receipt @ rev 17009

Add gnome-hearts
author Yuri Pourre <yuripourre@gmail.com>
date Tue Aug 12 14:41:19 2014 -0300 (2014-08-12)
parents 8243cc847667
children 814c58f64f83
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXft"
4 VERSION="2.3.1"
5 CATEGORY="x-window"
6 SHORT_DESC="X FreeType library"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="other"
9 SOURCE="libXft"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
13 HOST_ARCH="i486 arm"
15 DEPENDS="fontconfig xorg-libXrender"
16 BUILD_DEPENDS="xorg-libXrender-dev freetype-dev fontconfig-dev libxml2-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --sysconfdir=/etc \
23 --localstatedir=/var \
24 --disable-static \
25 $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }