# HG changeset patch # User Pascal Bellard # Date 1224448745 0 # Node ID fd43687faffafd2c00e28a6bae9a3eaad0ecc5a6 # Parent 43ae0b5f0a8a296d3aefab78e829c7c8cb3a0f63 Add xorg-setxkbmap diff -r 43ae0b5f0a8a -r fd43687faffa xorg-setxkbmap/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xorg-setxkbmap/receipt Sun Oct 19 20:39:05 2008 +0000 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="xorg-setxkbmap" +VERSION="1.0.4" +CATEGORY="x-window" +SHORT_DESC="Set the keyboard using the X Keyboard Extension." +MAINTAINER="pascal.bellard@slitaz.org" +DEPENDS="xorg xorg-libX11 xorg-xkeyboard-config" +SOURCE="setxkbmap" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://www.x.org/" +WGET_URL="$XORG_MIRROR/app/$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 +} +