wok view xorg-xkeyboard-config/receipt @ rev 95

Use xf86bigfont with Xorg server
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jan 04 14:14:25 2008 +0100 (2008-01-04)
parents da39ce2eb72c
children
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xkeyboard-config"
4 VERSION="0.9"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server keyboard library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
9 BUILD_DEPENDS="perl-xml-parser"
10 SOURCE="xkeyboard-config"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="http://xlibs.freedesktop.org/xkbdesc/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr\
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 --with-xkb-base=/usr/share/X11/xkb \
25 --with-xkb-rules-symlink=xorg \
26 $CONFIGURE_ARGS
27 make
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $_pkg/* $fs
35 }