homebrew-core/Formula/depqbf.rb

26 lines
878 B
Ruby
Raw Normal View History

class Depqbf < Formula
desc "Solver for quantified boolean formulae (QBF)"
homepage "https://lonsing.github.io/depqbf/"
url "https://github.com/lonsing/depqbf/archive/version-4.01.tar.gz"
sha256 "0246022128890d24b926a9bd17a9d4aa89b179dc05a0fedee33fa282c0ceba5b"
head "https://github.com/lonsig/depqbf.git"
2015-03-16 23:54:43 +00:00
bottle do
cellar :any
2016-02-23 22:23:44 +00:00
sha256 "5ef5545d3de7419cc366343b7acaf6d6bcc1c11c435d98b999285d21b48feaba" => :el_capitan
2015-08-22 08:16:23 +00:00
sha256 "d006dbbf545986f9d193b311c5c4dc126866188bdda63c9e3eecc396a8bb9d37" => :yosemite
sha256 "d03768d1c826f6f6b962ff7f397eac00dd4e0177abda5c520a43c1b0109b816f" => :mavericks
sha256 "fa17129bcb7ff4927330dfa1b25148cca21681b687811962402ab142914b9edd" => :mountain_lion
2015-03-16 23:54:43 +00:00
end
def install
system "make"
bin.install "depqbf"
lib.install "libqdpll.1.0.dylib"
end
test do
system "#{bin}/depqbf", "-h"
end
end