wok-6.x view wmctrl/receipt @ rev 24057
Up intel-microcode (20210216), lzsa (1.3.7), xrdp (0.9.16), xorgxrdp (0.2.16)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 08 14:31:15 2021 +0000 (2021-06-08) |
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 }