wok diff wmctrl/receipt @ rev 18898

slitaz-boot-scripts (424), slitaz-tools (966), tazpanel (567), tazusb (184)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 17 11:45:28 2016 +0100 (2016-02-17)
parents 5d53e8ccbc8d
children 0dd067e30013
line diff
     1.1 --- a/wmctrl/receipt	Thu Jan 08 02:04:05 2015 +0200
     1.2 +++ b/wmctrl/receipt	Wed Feb 17 11:45:28 2016 +0100
     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 -