wok view xorg-xf86-input-plpevtch/receipt @ rev 5153

get-virtualbox: Fix build.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Mar 24 14:34:06 2010 +0100 (2010-03-24)
parents 13875701b2cc
children 4450dbac2bcc
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-plpevtch"
4 VERSION="0.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server driver for touchscreens."
7 MAINTAINER="pascal.bellard@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-plpevtch"
12 TARBALL="$SOURCE-$VERSION.tar.gz"
13 WEB_SITE="http://www.plop.at/en/touchscreen.html"
14 WGET_URL="http://download.plop.at/files/plpevtch/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
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 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib/X11/modules/input/
35 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
36 $fs/usr/lib/X11/modules/input/
37 }