wok view xorg-xf86-input-keyboard/receipt @ rev 1183

Add freetds (Microsoft SQL Server and Sybase databases client libraries)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 03 06:52:57 2008 +0000 (2008-08-03)
parents b9c4f3b380e8
children e0e655b8e0d1
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-keyboard"
4 VERSION="1.1.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server keyboard driver."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg xorg-server"
9 SOURCE="xf86-input-keyboard"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/driver/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 --mandir=/usr/share/man \
22 --localstatedir=/var \
23 --with-xorg-module-dir=/usr/lib/X11/modules \
24 $CONFIGURE_ARGS
25 make
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/X11/modules/input/
33 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
34 $fs/usr/lib/X11/modules/input/
35 }