# HG changeset patch # User Christophe Lincoln # Date 1207261733 -7200 # Node ID 13064f88b1aa07141351f2b897887788442161cf # Parent aa87a24d1e82a4faff2300ffc6e394e2fe87daee Add xorg-xmodmap (for left hand mouse users) diff -r aa87a24d1e82 -r 13064f88b1aa xorg-xmodmap/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-xmodmap/receipt Fri Apr 04 00:28:53 2008 +0200 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="xorg-xmodmap" +VERSION="1.0.3" +CATEGORY="x-window" +SHORT_DESC="X keyboard and mouse configuration utility." +MAINTAINER="pankso@slitaz.org" +DEPENDS="xorg" +SOURCE="xmodmap" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.x.org/" +WGET_URL="$XORG_MIRROR/everything/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + $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 +}