Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

depqbf 5.01 #4655

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions Formula/depqbf.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Depqbf < Formula
desc "Solver for quantified boolean formulae (QBF)"
homepage "https://lonsing.github.io/depqbf/"
url "https://github.com/lonsing/depqbf/archive/version-5.0.tar.gz"
sha256 "9a4c9a60246e1c00128ae687f201b6dd309ece1e7601a6aa042a6317206f5dc7"
url "https://github.com/lonsing/depqbf/archive/version-5.01.tar.gz"
sha256 "ba2b93b3a83917f6084ab88d75b4848ce9354584fb36d70537fa7490e42921bc"
head "https://github.com/lonsing/depqbf.git"

bottle do
Expand All @@ -13,13 +13,6 @@ class Depqbf < Formula
end

def install
# Fixes "ld: unknown option: -soname"
# Reported 5 Sep 2016 https://github.com/lonsing/depqbf/issues/8
inreplace "makefile" do |s|
s.gsub! "-Wl,-soname,libqdpll.so.$(MAJOR)", ""
s.gsub! ".so.$(VERSION)", ".$(VERSION).dylib"
end

system "make"
bin.install "depqbf"
lib.install "libqdpll.a", "libqdpll.1.0.dylib"
Expand Down