wok view xorg-xf86-input-evdev/receipt @ rev 451

Add some Xorg video driver + fix libX11 XKeysymDB
author Christophe Lincoln <pankso@slitaz.org>
date Tue Mar 18 14:04:44 2008 +0100 (2008-03-18)
parents
children 6a6ba65f2ad7
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-evdev"
4 VERSION="1.1.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg input evdev driver."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg xorg-server"
9 SOURCE="xf86-input-evdev"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/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 }