aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBaptiste Fontaine2015-02-27 19:25:40 +0100
committerTim D. Smith2015-03-16 16:57:37 -0700
commitea5c449e3886c76ef8aacc3dcbf63b7700f56e82 (patch)
tree5c8d30205e319bb2f1bff3fc7639e265274b4b70 /Library/Formula
parent7c732ddabd3728e61d4550120d23fbff365b1cab (diff)
downloadhomebrew-ea5c449e3886c76ef8aacc3dcbf63b7700f56e82.tar.bz2
depqbf 4.0
Closes #37248. Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/depqbf.rb15
1 files changed, 9 insertions, 6 deletions
diff --git a/Library/Formula/depqbf.rb b/Library/Formula/depqbf.rb
index af44ca84d..4b906bbe5 100644
--- a/Library/Formula/depqbf.rb
+++ b/Library/Formula/depqbf.rb
@@ -1,13 +1,16 @@
-require 'formula'
-
class Depqbf < Formula
- homepage 'http://lonsing.github.io/depqbf/'
- url 'https://github.com/lonsing/depqbf/archive/version-3.01.tar.gz'
- sha1 '7f1dc19f07fc0fa607724d1b7b124d5f2620acee'
- head 'https://github.com/lonsig/depqbf.git'
+ homepage "https://lonsing.github.io/depqbf/"
+ url "https://github.com/lonsing/depqbf/archive/version-4.0.tar.gz"
+ sha1 "dd7dd35aded11bb348ff9ef16626d481b7da3fe4"
+ head "https://github.com/lonsig/depqbf.git"
def install
system "make"
bin.install "depqbf"
+ lib.install "libqdpll.1.0.dylib"
+ end
+
+ test do
+ system "#{bin}/depqbf", "-h"
end
end