homebrew-core/Formula/eprover.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
480 B
Ruby

class Eprover < Formula
desc "Theorem prover for full first-order logic with equality"
homepage "http://www4.informatik.tu-muenchen.de/~schulz/E/E.html"
url "http://www4.in.tum.de/~schulz/WORK/E_DOWNLOAD/V_1.8/E.tgz"
version "1.8"
sha256 "636a5353046680f9c960d02d942df0a55af2e3941676df76e3356a334f6e842e"
def install
system "./configure", "--bindir=#{bin}", "--man-prefix=#{man}"
system "make", "install"
end
test do
system "#{bin}/eproof"
end
end