wok view xorg-xf86-input-void/receipt @ rev 7573

Up: tazpkg 4.1.3
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Dec 09 17:37:28 2010 +0100 (2010-12-09)
parents 9d594cfaf7c6
children c514cc4854d8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-void"
4 VERSION="1.3.0"
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-void"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="$XORG_MIRROR/driver/$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 --enable-evcalibrate \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/X11/modules/input/
36 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
37 $fs/usr/lib/X11/modules/input/
38 }