wok view xorg-libXfont/receipt @ rev 6993

Big update: xorg/libdrm/mesa (174 packages)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Oct 31 00:13:37 2010 +0200 (2010-10-31)
parents 55fede281d6c
children 36c41101f006
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXfont"
4 VERSION="1.4.2"
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 xorg-util-macros freetype-dev xorg-xproto xorg-xtrans"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr --sysconfdir=/etc \
21 --mandir=/usr/share/man --localstatedir=/var \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 }