wok view wmctrl/receipt @ rev 18084

Add wmctrl
author Yuri Pourre <yuripourre@gmail.com>
date Fri May 22 19:32:45 2015 -0300 (2015-05-22)
parents 5d53e8ccbc8d
children 0dd067e30013
line source
1 # SliTaz package receipt.
3 PACKAGE="wmctrl"
4 VERSION="1.07"
5 CATEGORY="utilities"
6 LICENSE="GPL"
7 MAINTAINER="yuripourre@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="https://sites.google.com/site/tstyblo/wmctrl/"
10 WGET_URL="https://sites.google.com/site/tstyblo/$PACKAGE/$TARBALL"
11 SHORT_DESC="A UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager."
12 DEPENDS="glib"
13 BUILD_DEPENDS="glib-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man\
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }