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

Add xorg-xf86-input-evtouch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jan 31 20:16:22 2010 +0100 (2010-01-31)
parents
children 9f229c23e1ba
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@4846 8 DEPENDS="xorg"
pascal@4846 9 BUILD_DEPENDS="xorg-server xorg-xproto"
pascal@4846 10 SOURCE="xf86-input-evtouch"
pascal@4846 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@4846 12 WEB_SITE="http://www.x.org/"
pascal@4846 13 WGET_URL="http://www.conan.de/touchscreen/$TARBALL"
pascal@4846 14
pascal@4846 15 # Rules to configure and make the package.
pascal@4846 16 compile_rules()
pascal@4846 17 {
pascal@4846 18 cd $src
pascal@4846 19 ./configure \
pascal@4846 20 --prefix=/usr \
pascal@4846 21 --sysconfdir=/etc \
pascal@4846 22 --mandir=/usr/share/man \
pascal@4846 23 --localstatedir=/var \
pascal@4846 24 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@4846 25 $CONFIGURE_ARGS &&
pascal@4846 26 make &&
pascal@4846 27 make DESTDIR=$PWD/_pkg install
pascal@4846 28 }
pascal@4846 29
pascal@4846 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4846 31 genpkg_rules()
pascal@4846 32 {
pascal@4846 33 mkdir -p $fs/usr/lib/X11/modules/input/
pascal@4846 34 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
pascal@4846 35 $fs/usr/lib/X11/modules/input/
pascal@4846 36 }
pascal@4846 37