wok view xorg-xf86-input-keyboard/receipt @ rev 15416

Up: thunderbird-langpack-en_US (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:37 2013 +0100 (2013-11-03)
parents c514cc4854d8
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-input-keyboard"
4 VERSION="1.7.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server keyboard driver."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="xf86-input-keyboard"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/driver/$TARBALL"
13 DEPENDS="xorg-server"
14 BUILD_DEPENDS="xorg-server-dev"
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=$DESTDIR 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 $install/usr/lib/X11/modules/input/*.so \
36 $fs/usr/lib/X11/modules/input/
37 }