wok view wmctrl/receipt @ rev 20615

Update varka
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 21 20:44:57 2018 +0100 (2018-12-21)
parents 2008e4626c02
children 2ed72f71270b
line source
1 # SliTaz package receipt.
3 PACKAGE="wmctrl"
4 VERSION="c5c5eb8"
5 CATEGORY="utilities"
6 LICENSE="GPL"
7 MAINTAINER="yuripourre@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="https://sites.google.com/site/tstyblo/wmctrl/"
10 WGET_URL="http://git.make-linux.org/tools/$PACKAGE.git/snapshot/$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 }