wok view xorg-xf86-input-evtouch/receipt @ rev 8057

Add: vzquota
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Jan 21 00:56:32 2011 +0100 (2011-01-21)
parents 8ea11f6c1d7c
children 940b5937e496
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-evtouch"
4 VERSION="0.8.8"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server protocol."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-server"
9 BUILD_DEPENDS="xorg-server-dev"
10 SOURCE="xf86-input-evtouch"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="http://www.conan.de/touchscreen/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 grep -qs dummy evtouch.c && patch -p1 < ../stuff/evtouch.u
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --mandir=/usr/share/man \
24 --localstatedir=/var \
25 --with-xorg-module-dir=/usr/lib/X11/modules \
26 --enable-evcalibrate \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $_pkg/usr $fs
36 rm -f $fs/usr/lib/X11/modules/input/*.la
37 }