wok annotate xdotool/receipt @ rev 9295

Fixed fbxkb.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Mar 17 06:52:06 2011 +0000 (2011-03-17)
parents 1c776cd95d41
children b23b5bacd9ca
rev   line source
jozee@2731 1 # SliTaz package receipt.
jozee@2731 2
jozee@2731 3 PACKAGE="xdotool"
jozee@2731 4 VERSION="20090126"
jozee@2731 5 CATEGORY="misc"
jozee@2731 6 SHORT_DESC="fake key emulator"
jozee@2731 7 MAINTAINER="jozee@slitaz.org"
jozee@2731 8 DEPENDS="xorg-libX11 xorg-libXtst"
slaxemulator@8961 9 BUILD_DEPENDS="xorg-libX11-dev xorg-libXtst-dev xorg-libXtst"
jozee@2731 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2731 11 WEB_SITE="http://semicomplete.googlecode.com/files"
jozee@2731 12 WGET_URL="$WEB_SITE/$TARBALL"
jozee@2731 13
jozee@2731 14 # Rules to configure and make the package.
jozee@2731 15 compile_rules()
jozee@2731 16 {
jozee@2731 17 cd $src
jozee@2731 18 make xdotool
jozee@2731 19 }
jozee@2731 20
jozee@2731 21 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2731 22 genpkg_rules()
jozee@2731 23 {
jozee@2731 24 mkdir -p $fs/usr/bin
jozee@2731 25 cp -a $src/xdotool $fs/usr/bin
jozee@2731 26
jozee@2731 27 }
jozee@2731 28