wok annotate xorg-xf86-input-void/receipt @ rev 15228
gsasl: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Sep 22 18:19:03 2013 +0200 (2013-09-22) |
parents | c514cc4854d8 |
children | eb8067417980 |
rev | line source |
---|---|
pascal@4870 | 1 # SliTaz package receipt. |
pascal@4870 | 2 |
pascal@4870 | 3 PACKAGE="xorg-xf86-input-void" |
pascal@15164 | 4 VERSION="1.4.0" |
pascal@4870 | 5 CATEGORY="x-window" |
pascal@4870 | 6 SHORT_DESC="Xorg server protocol." |
pascal@4870 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@4870 | 8 SOURCE="xf86-input-void" |
pascal@4870 | 9 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@4870 | 10 WEB_SITE="http://www.x.org/" |
pascal@4870 | 11 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pascal@4870 | 12 |
pascal@15164 | 13 DEPENDS="xorg-server" |
pascal@15164 | 14 BUILD_DEPENDS="xorg-server-dev" |
pascal@15164 | 15 |
pascal@4870 | 16 # Rules to configure and make the package. |
pascal@4870 | 17 compile_rules() |
pascal@4870 | 18 { |
pascal@4870 | 19 cd $src |
pascal@4870 | 20 ./configure \ |
pascal@4870 | 21 --prefix=/usr \ |
pascal@4870 | 22 --sysconfdir=/etc \ |
pascal@4870 | 23 --mandir=/usr/share/man \ |
pascal@4870 | 24 --localstatedir=/var \ |
pascal@4870 | 25 --with-xorg-module-dir=/usr/lib/X11/modules \ |
pascal@4870 | 26 --enable-evcalibrate \ |
pascal@4870 | 27 $CONFIGURE_ARGS && |
pascal@4870 | 28 make && |
pascal@15164 | 29 make DESTDIR=$DESTDIR install |
pascal@4870 | 30 } |
pascal@4870 | 31 |
pascal@4870 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4870 | 33 genpkg_rules() |
pascal@4870 | 34 { |
pascal@4870 | 35 mkdir -p $fs/usr/lib/X11/modules/input/ |
pascal@15164 | 36 cp -a $install/usr/lib/X11/modules/input/*.so \ |
pascal@4870 | 37 $fs/usr/lib/X11/modules/input/ |
pascal@4870 | 38 } |
pascal@4870 | 39 |