# HG changeset patch # User Pascal Bellard # Date 1264965404 -3600 # Node ID 89f43019ced4b4b33e9cf1e0c954461237d390f7 # Parent c834921b5b07b7e5868d9909438089ae9545cb39 Add xorg-xf86-input-mutouch diff -r c834921b5b07 -r 89f43019ced4 xorg-xf86-input-mutouch/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xf86-input-mutouch/receipt Sun Jan 31 20:16:44 2010 +0100 @@ -0,0 +1,37 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xf86-input-mutouch" +VERSION="1.2.1" +CATEGORY="x-window" +SHORT_DESC="Xorg server protocol." +MAINTAINER="pankso@slitaz.org" +DEPENDS="xorg" +BUILD_DEPENDS="xorg-server xorg-xproto" +SOURCE="xf86-input-mutouch" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.x.org/" +WGET_URL="$XORG_MIRROR/driver/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --with-xorg-module-dir=/usr/lib/X11/modules \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib/X11/modules/input/ + cp -a $_pkg/usr/lib/X11/modules/input/*.so \ + $fs/usr/lib/X11/modules/input/ +} +