# HG changeset patch # User Yuri Pourre # Date 1432333965 10800 # Node ID 2008e4626c029602cd3959cba72e40c59dcb4427 # Parent e17b9437d6548810e1d8ae757732dc44985b0b2b Add wmctrl diff -r e17b9437d654 -r 2008e4626c02 wmctrl/receipt --- a/wmctrl/receipt Fri May 22 18:45:00 2015 -0300 +++ b/wmctrl/receipt Fri May 22 19:32:45 2015 -0300 @@ -2,33 +2,29 @@ PACKAGE="wmctrl" VERSION="1.07" -CATEGORY="misc" -SHORT_DESC="Control your EWMH compliant window manager from command line" -MAINTAINER="jozee@slitaz.org" -LICENSE="GPL2" +CATEGORY="utilities" +LICENSE="GPL" +MAINTAINER="yuripourre@gmail.com" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://sweb.cz/tripie/utils/wmctrl/dist/" -WGET_URL="$WEB_SITE/$TARBALL" -TAGS="wm desktop" - -DEPENDS="glib xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp \ -xorg-libXext xorg-libXmu xorg-libXt" -BUILD_DEPENDS="glib-dev xorg-dev" +WEB_SITE="https://sites.google.com/site/tstyblo/wmctrl/" +WGET_URL="https://sites.google.com/site/tstyblo/$PACKAGE/$TARBALL" +SHORT_DESC="A UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager." +DEPENDS="glib" +BUILD_DEPENDS="glib-dev" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr && + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man\ + $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install } -# Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin + mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr - } -