wok annotate xorg-xf86-input-evtouch/receipt @ rev 15724

Move to undigest: php-cups fotoxx printoxx gtkaml v4l-dvb
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 26 14:11:39 2013 +0000 (2013-12-26)
parents 940b5937e496
children
rev   line source
pascal@4846 1 # SliTaz package receipt.
pascal@4846 2
pascal@4846 3 PACKAGE="xorg-xf86-input-evtouch"
pascal@4846 4 VERSION="0.8.8"
pascal@4846 5 CATEGORY="x-window"
pascal@4846 6 SHORT_DESC="Xorg server protocol."
pascal@4846 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
pascal@4846 9 SOURCE="xf86-input-evtouch"
pascal@4846 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@4846 11 WEB_SITE="http://www.x.org/"
pascal@4846 12 WGET_URL="http://www.conan.de/touchscreen/$TARBALL"
pascal@4846 13
pascal@15579 14 DEPENDS="xorg-server"
pascal@15579 15 BUILD_DEPENDS="xorg-server-dev"
pascal@15579 16
pascal@4846 17 # Rules to configure and make the package.
pascal@4846 18 compile_rules()
pascal@4846 19 {
pascal@4846 20 cd $src
pascal@8974 21 grep -qs dummy evtouch.c && patch -p1 < $stuff/evtouch.u
pascal@4846 22 ./configure \
pascal@4846 23 --prefix=/usr \
pascal@4846 24 --sysconfdir=/etc \
pascal@4846 25 --mandir=/usr/share/man \
pascal@4846 26 --localstatedir=/var \
pascal@4846 27 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@4849 28 --enable-evcalibrate \
pascal@4846 29 $CONFIGURE_ARGS &&
pascal@4846 30 make &&
pascal@15579 31 make DESTDIR=$DESTDIR install
pascal@4846 32 }
pascal@4846 33
pascal@4846 34 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4846 35 genpkg_rules()
pascal@4846 36 {
pascal@15579 37 cp -a $install/usr $fs
pascal@4849 38 rm -f $fs/usr/lib/X11/modules/input/*.la
pascal@4846 39 }
pascal@4846 40