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

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents 940b5937e496
children
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 LICENSE="MIT"
9 SOURCE="xf86-input-evtouch"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="http://www.conan.de/touchscreen/$TARBALL"
14 DEPENDS="xorg-server"
15 BUILD_DEPENDS="xorg-server-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 grep -qs dummy evtouch.c && patch -p1 < $stuff/evtouch.u
22 ./configure \
23 --prefix=/usr \
24 --sysconfdir=/etc \
25 --mandir=/usr/share/man \
26 --localstatedir=/var \
27 --with-xorg-module-dir=/usr/lib/X11/modules \
28 --enable-evcalibrate \
29 $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 cp -a $install/usr $fs
38 rm -f $fs/usr/lib/X11/modules/input/*.la
39 }