Skip to content

Commit

Permalink
Update to 1.0.8. (#2)
Browse files Browse the repository at this point in the history
Removed GPL flag for now, since we don't support building with GPL dependencies yet.
  • Loading branch information
mpreiner authored Sep 26, 2023
1 parent b11ff36 commit 9a6e20a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions Formula/cvc5.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ class Cvc5 < Formula

desc "Efficient open-source automatic theorem prover for SMT problems"
homepage "https://cvc5.github.io/"
url "https://github.com/cvc5/cvc5.git", tag: "cvc5-1.0.5"
url "https://github.com/cvc5/cvc5.git", tag: "cvc5-1.0.8"
head "https://github.com/cvc5/cvc5.git", branch: "main"

option "with-glp", "Permit GLP dependencies, if available"
option "with-java-bindings", "Build Java bindings based on new C++ API"
option "with-python-bindings", "Build python bindings based on new C++ API"

depends_on "cmake"
depends_on "flex"
depends_on "gmp"
depends_on :java if build.with? "java-bindings"
depends_on "[email protected]"

resource "toml" do
url "https://files.pythonhosted.org/packages/be/ba/1f744cdc819428fc6b5084ec34d9b30660f6f9daaf70eead706e3203ec3c/toml-0.10.2.tar.gz"
sha256 "b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"
resource "tomli" do
url "https://files.pythonhosted.org/packages/c0/3f/d7af728f075fb08564c5949a9c95e44352e23dee646869fa104a3b2060a3/tomli-2.0.1.tar.gz"
sha256 "de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"
end

resource "pyparsing" do
Expand All @@ -36,7 +36,6 @@ def install
"-DCMAKE_FIND_FRAMEWORK=NEVER",
]

command_line << "--glp" if build.with? "glp"
command_line << "--python-bindings" if build.with? "python-bindings"
command_line << "--java-bindings" if build.with? "java-bindings"

Expand Down

0 comments on commit 9a6e20a

Please sign in to comment.