homebrew-core/Formula/wmctrl.rb
Stefan Schüßler a89c491610 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>
2012-04-17 06:57:42 -07:00

18 lines
483 B
Ruby

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