wok view xorg-xf86-input-synaptics/receipt @ rev 11957

Up: slitaz-configs (4.8.1)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 01 17:57:06 2012 +0100 (2012-03-01)
parents c514cc4854d8
children bdd39c3e98d5
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-synaptics"
4 VERSION="1.3.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg synaptics driver."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-server xorg-libXtst"
9 BUILD_DEPENDS="xorg-server-dev xorg-libXtst-dev"
10 SOURCE="xf86-input-synaptics"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 --with-xorg-module-dir=/usr/lib/X11/modules \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/X11/modules/input/
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/lib/X11/modules/input/*.so \
36 $fs/usr/lib/X11/modules/input/
37 mkdir -p $fs/etc/X11/xorg.conf.d
38 cp -a $stuff/*.conf $fs/etc/X11/xorg.conf.d
39 }