homebrew-core/Formula/kimwitu++.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
587 B
Ruby

class Kimwituxx < Formula
desc "Tool for processing trees (i.e. terms)"
homepage "http://www2.informatik.hu-berlin.de/sam/kimwitu++/"
url "http://download.savannah.gnu.org/releases/kimwitu-pp/kimwitu++-2.3.13.tar.gz"
sha256 "3f6d9fbb35cc4760849b18553d06bc790466ca8b07884ed1a1bdccc3a9792a73"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
bin.mkpath
man1.mkpath
system "make", "install"
end
end