# HG changeset patch # User Christopher Rogers # Date 1292104213 0 # Node ID 253d2b1230697f9fac6b9db0c9f13603902955e2 # Parent c771aa29f5d43a2b2a47ad99be0f43f1716ae89e Add xorg-xf86-input-vmmouse. diff -r c771aa29f5d4 -r 253d2b123069 xorg-xf86-input-vmmouse/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xf86-input-vmmouse/receipt Sat Dec 11 21:50:13 2010 +0000 @@ -0,0 +1,36 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xf86-input-vmmouse" +VERSION="12.6.10" +CATEGORY="x-window" +SHORT_DESC="X.org VMWare Mouse Input driver." +MAINTAINER="slaxemulator@gmail.com" +DEPENDS="xorg" +BUILD_DEPENDS="pkg-config xorg-server-dev" +SOURCE="xf86-input-vmmouse" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://xorg.freedesktop.org/" +WGET_URL="$XORG_MIRROR/driver/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-xorg-conf-dir=/etc/X11/xorg.conf.d \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib $fs/usr + cp -a $_pkg/etc $fs +} +