homebrew-core/Formula/kimwitu++.rb
2015-12-21 13:28:27 +00:00

16 lines
588 B
Ruby

class Kimwituxx < Formula
desc "Tool for processing trees (i.e. terms)"
homepage "https://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