wok-current annotate xorg-xf86-input-void/receipt @ rev 5761
Add osip
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jul 05 11:57:04 2010 +0200 (2010-07-05) |
parents | 9d594cfaf7c6 |
children | c514cc4854d8 |
rev | line source |
---|---|
pascal@4870 | 1 # SliTaz package receipt. |
pascal@4870 | 2 |
pascal@4870 | 3 PACKAGE="xorg-xf86-input-void" |
pascal@4870 | 4 VERSION="1.3.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 DEPENDS="xorg" |
pascal@4883 | 9 BUILD_DEPENDS="xorg-server xorg-xproto pkg-config xorg-server-dev \ |
pascal@4883 | 10 xorg-inputproto xorg-randrproto" |
pascal@4870 | 11 SOURCE="xf86-input-void" |
pascal@4870 | 12 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@4870 | 13 WEB_SITE="http://www.x.org/" |
pascal@4870 | 14 WGET_URL="$XORG_MIRROR/driver/$TARBALL" |
pascal@4870 | 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@4870 | 29 make DESTDIR=$PWD/_pkg 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@4870 | 36 cp -a $_pkg/usr/lib/X11/modules/input/*.so \ |
pascal@4870 | 37 $fs/usr/lib/X11/modules/input/ |
pascal@4870 | 38 } |
pascal@4870 | 39 |