4cd0935be7
Closes Homebrew/homebrew#26942. Closes Homebrew/homebrew#26946. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
405 B
Ruby
17 lines
405 B
Ruby
require 'formula'
|
|
|
|
class Eprover < Formula
|
|
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'
|
|
sha1 '43cec71bc1187798352036b550794a4d03137f87'
|
|
|
|
def install
|
|
system "./configure", "--bindir=#{bin}", "--man-prefix=#{man}"
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/eproof"
|
|
end
|
|
end
|