wok annotate wmctrl/receipt @ rev 2731

Add: wmctrl, xdotool
author Rohit Joshi <jozee@slitaz.org>
date Fri Apr 24 07:36:51 2009 +0000 (2009-04-24)
parents
children 03ad5a05339c
rev   line source
jozee@2731 1 # SliTaz package receipt.
jozee@2731 2
jozee@2731 3 PACKAGE="wmctrl"
jozee@2731 4 VERSION="1.07"
jozee@2731 5 CATEGORY="misc"
jozee@2731 6 SHORT_DESC="Control your EWMH compliant window manager from command line"
jozee@2731 7 MAINTAINER="jozee@slitaz.org"
jozee@2731 8 DEPENDS=""
jozee@2731 9 BUILD_DEPENDS=""
jozee@2731 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2731 11 WEB_SITE="http://sweb.cz/tripie/utils/wmctrl/dist/"
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 ./configure --prefix=/usr
jozee@2731 19 make
jozee@2731 20 make DESTDIR=$PWD/_pkg install
jozee@2731 21 }
jozee@2731 22
jozee@2731 23 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2731 24 genpkg_rules()
jozee@2731 25 {
jozee@2731 26 mkdir -p $fs/usr/bin
jozee@2731 27 cp -a $_pkg/usr/bin $fs/usr
jozee@2731 28
jozee@2731 29 }
jozee@2731 30