wok rev 2731

Add: wmctrl, xdotool
author Rohit Joshi <jozee@slitaz.org>
date Fri Apr 24 07:36:51 2009 +0000 (2009-04-24)
parents 72877864776f
children ba3a9fbcb149
files wmctrl/receipt xdotool/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/wmctrl/receipt	Fri Apr 24 07:36:51 2009 +0000
     1.3 @@ -0,0 +1,30 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="wmctrl"
     1.7 +VERSION="1.07"
     1.8 +CATEGORY="misc"
     1.9 +SHORT_DESC="Control your EWMH compliant window manager from command line"
    1.10 +MAINTAINER="jozee@slitaz.org"
    1.11 +DEPENDS=""
    1.12 +BUILD_DEPENDS=""
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://sweb.cz/tripie/utils/wmctrl/dist/" 
    1.15 +WGET_URL="$WEB_SITE/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure --prefix=/usr 
    1.22 +	make
    1.23 +	make DESTDIR=$PWD/_pkg install
    1.24 +}
    1.25 +
    1.26 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.27 +genpkg_rules()
    1.28 +{
    1.29 +	mkdir -p $fs/usr/bin
    1.30 +	cp -a $_pkg/usr/bin $fs/usr
    1.31 +	
    1.32 +}
    1.33 +
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/xdotool/receipt	Fri Apr 24 07:36:51 2009 +0000
     2.3 @@ -0,0 +1,28 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="xdotool"
     2.7 +VERSION="20090126"
     2.8 +CATEGORY="misc"
     2.9 +SHORT_DESC="fake key emulator"
    2.10 +MAINTAINER="jozee@slitaz.org"
    2.11 +DEPENDS="xorg-libX11 xorg-libXtst"
    2.12 +BUILD_DEPENDS="xorg-libX11-dev xorg-libXtst-dev xorg-dev-proto xorg-libXtst"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.14 +WEB_SITE="http://semicomplete.googlecode.com/files" 
    2.15 +WGET_URL="$WEB_SITE/$TARBALL"
    2.16 +
    2.17 +# Rules to configure and make the package.
    2.18 +compile_rules()
    2.19 +{
    2.20 +	cd $src
    2.21 +	make xdotool
    2.22 +}
    2.23 +
    2.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.25 +genpkg_rules()
    2.26 +{
    2.27 +	mkdir -p $fs/usr/bin
    2.28 +	cp -a $src/xdotool $fs/usr/bin
    2.29 +	
    2.30 +}
    2.31 +