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

Bumped aufs-utils.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 14 12:40:34 2010 +0000 (2010-10-14)
parents d7c87b8a2a34
children c514cc4854d8
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"
9 BUILD_DEPENDS="xorg-server xorg-xproto pkg-config xorg-server-dev \
10 xorg-inputproto xorg-randrproto"
11 SOURCE="xf86-input-evtouch"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="http://www.conan.de/touchscreen/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 grep -qs dummy evtouch.c && patch -p1 < ../stuff/evtouch.u
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --mandir=/usr/share/man \
25 --localstatedir=/var \
26 --with-xorg-module-dir=/usr/lib/X11/modules \
27 --enable-evcalibrate \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $_pkg/usr $fs
37 rm -f $fs/usr/lib/X11/modules/input/*.la
38 }