wok rev 18084

Add wmctrl
author Yuri Pourre <yuripourre@gmail.com>
date Fri May 22 19:32:45 2015 -0300 (2015-05-22)
parents e17b9437d654
children 62a027dfcea3
files wmctrl/receipt
line diff
     1.1 --- a/wmctrl/receipt	Fri May 22 18:45:00 2015 -0300
     1.2 +++ b/wmctrl/receipt	Fri May 22 19:32:45 2015 -0300
     1.3 @@ -2,33 +2,29 @@
     1.4  
     1.5  PACKAGE="wmctrl"
     1.6  VERSION="1.07"
     1.7 -CATEGORY="misc"
     1.8 -SHORT_DESC="Control your EWMH compliant window manager from command line"
     1.9 -MAINTAINER="jozee@slitaz.org"
    1.10 -LICENSE="GPL2"
    1.11 +CATEGORY="utilities"
    1.12 +LICENSE="GPL"
    1.13 +MAINTAINER="yuripourre@gmail.com"
    1.14  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="http://sweb.cz/tripie/utils/wmctrl/dist/" 
    1.16 -WGET_URL="$WEB_SITE/$TARBALL"
    1.17 -TAGS="wm desktop"
    1.18 -
    1.19 -DEPENDS="glib xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp \
    1.20 -xorg-libXext xorg-libXmu xorg-libXt"
    1.21 -BUILD_DEPENDS="glib-dev xorg-dev"
    1.22 +WEB_SITE="https://sites.google.com/site/tstyblo/wmctrl/"
    1.23 +WGET_URL="https://sites.google.com/site/tstyblo/$PACKAGE/$TARBALL"
    1.24 +SHORT_DESC="A UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager."
    1.25 +DEPENDS="glib"
    1.26 +BUILD_DEPENDS="glib-dev"
    1.27  
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	cd $src
    1.32 -	./configure --prefix=/usr &&
    1.33 +	./configure                    \
    1.34 +		--prefix=/usr          \
    1.35 +		--mandir=/usr/share/man\
    1.36 +		$CONFIGURE_ARGS &&
    1.37  	make &&
    1.38  	make DESTDIR=$DESTDIR install
    1.39  }
    1.40  
    1.41 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr/bin
    1.45 +	mkdir -p $fs/usr
    1.46  	cp -a $install/usr/bin $fs/usr
    1.47 -	
    1.48  }
    1.49 -