aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorStefan Schüßler2012-04-17 10:43:55 +0200
committerAdam Vandenberg2012-04-17 06:57:42 -0700
commita888e2599bf8a632310b9d556e5d041863d16dc2 (patch)
tree85de6bd00046f3c895c42555ed2963511243ce6f /Library/Formula
parent67827eec9b9433488e37ec6ab9b7c820f188e6e8 (diff)
downloadhomebrew-a888e2599bf8a632310b9d556e5d041863d16dc2.tar.bz2
wmctrl 1.07
wmctrl is a UNIX/Linux command line tool to interact with an EWMH/NetWM compatible X Window Manager. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/wmctrl.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/wmctrl.rb b/Library/Formula/wmctrl.rb
new file mode 100644
index 000000000..74a203327
--- /dev/null
+++ b/Library/Formula/wmctrl.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Wmctrl < Formula
+ homepage 'http://sweb.cz/tripie/utils/wmctrl/'
+ url 'http://tomas.styblo.name/wmctrl/dist/wmctrl-1.07.tar.gz'
+ md5 '1fe3c7a2caa6071e071ba34f587e1555'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'glib'
+ depends_on 'gettext'
+
+ def install
+ ENV.x11
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make install"
+ end
+end