wok view wmctrl/receipt @ rev 22539

updated bird (2.0.3 -> 2.0.7)
author Hans-G?nter Theisgen
date Fri Jan 03 16:08:36 2020 +0100 (2020-01-03)
parents 0dd067e30013
children 2a0479881723
line source
1 # SliTaz package receipt.
3 PACKAGE="wmctrl"
4 VERSION="1.07"
5 CATEGORY="utilities"
6 SHORT_DESC="A UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager."
7 MAINTAINER="yuripourre@gmail.com"
8 LICENSE="GPL"
9 WEB_SITE="http://tripie.sweb.cz/utils/wmctrl/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}dist/$TARBALL"
14 DEPENDS="glib"
15 BUILD_DEPENDS="glib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man\
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }