wok-next annotate xorg-xf86-input-keyboard/receipt @ rev 346
Fix bad URL for input keyboard
| author | Christophe Lincoln <pankso@slitaz.org> |
|---|---|
| date | Thu Mar 06 11:29:07 2008 +0100 (2008-03-06) |
| parents | 8bf32f781e89 |
| children | bbe3302309dc |
| rev | line source |
|---|---|
| pankso@88 | 1 # SliTaz package receipt. |
| pankso@88 | 2 |
| pankso@88 | 3 PACKAGE="xorg-xf86-input-keyboard" |
| pankso@346 | 4 VERSION="1.1.1" |
| pankso@88 | 5 CATEGORY="x-window" |
| pankso@346 | 6 SHORT_DESC="Xorg server keyboard driver." |
| pankso@88 | 7 MAINTAINER="pankso@slitaz.org" |
| pankso@88 | 8 DEPENDS="xorg xorg-server" |
| pankso@88 | 9 SOURCE="xf86-input-keyboard" |
| pankso@346 | 10 TARBALL="$SOURCE-$VERSION.tar.bz2" |
| pankso@88 | 11 WEB_SITE="http://www.x.org/" |
| pankso@346 | 12 WGET_URL="ftp://ftp.solnet.ch/mirror/x.org/pub/individual/driver/$TARBALL" |
| pankso@88 | 13 |
| pankso@88 | 14 # Rules to configure and make the package. |
| pankso@88 | 15 compile_rules() |
| pankso@88 | 16 { |
| pankso@88 | 17 cd $src |
| pankso@88 | 18 ./configure --prefix=/usr --sysconfdir=/etc \ |
| pankso@88 | 19 --mandir=/usr/share/man --localstatedir=/var \ |
| pankso@88 | 20 $CONFIGURE_ARGS |
| pankso@88 | 21 make |
| pankso@88 | 22 make DESTDIR=$PWD/_pkg install |
| pankso@88 | 23 } |
| pankso@88 | 24 |
| pankso@88 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
| pankso@88 | 26 genpkg_rules() |
| pankso@88 | 27 { |
| pankso@88 | 28 mkdir -p $fs/usr/lib/xorg/modules/input/ |
| pankso@88 | 29 cp -a $_pkg/usr/lib/xorg/modules/input/*.so \ |
| pankso@88 | 30 $fs/usr/lib/xorg/modules/input/ |
| pankso@88 | 31 strip -s $fs/usr/lib/xorg/modules/input/* |
| pankso@88 | 32 } |
| pankso@88 | 33 |