wok view xorg-libXfont/receipt @ rev 10457

xchm: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 11:14:18 2011 +0200 (2011-05-25)
parents 36c41101f006
children b490f13f6603
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXfont"
4 VERSION="1.4.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server keyboard library."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="libXfont"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 DEPENDS="freetype xorg-libfontenc"
11 BUILD_DEPENDS="xorg-fontsproto freetype-dev \
12 xorg-libfontenc-dev xorg-xproto xorg-xtrans"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr --sysconfdir=/etc \
22 --mandir=/usr/share/man --localstatedir=/var \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }