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

nethogs: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 16:09:27 2011 +0200 (2011-05-25)
parents c514cc4854d8
children eb8067417980
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 }