Updated stp to revision 774.

This commit is contained in:
Markus Groß 2010-05-21 18:31:42 +02:00 committed by Adam Vandenberg
parent abc5b74186
commit 3424db3ca4

23
Formula/stp.rb Normal file
View file

@ -0,0 +1,23 @@
require 'formula'
class Stp < Formula
head 'http://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp', :revision => '774'
homepage 'http://sites.google.com/site/stpfastprover/'
def options
[
["--32-bit", "Force 32-bit."]
]
end
def install
unless ARGV.include? "--32-bit"
inreplace "./scripts/Makefile.common" do |s|
s.change_make_var! "CFLAGS_M32", ""
end
end
system "./clean-install.sh", "--with-prefix=#{prefix}"
system "make install"
end
end