aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorhlin1172015-01-13 20:51:25 -0600
committerMike McQuaid2015-01-15 16:32:51 +0000
commit03e76a795017c71c88679f116f590612993202c2 (patch)
treed9d73978dcb54879fb26e96003cef852a521b2ac /Library
parent442ebae29ebfc89477325aee8bd991c798c58e76 (diff)
downloadhomebrew-03e76a795017c71c88679f116f590612993202c2.tar.bz2
cgdb 0.6.8
Closes #35847. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cgdb.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/cgdb.rb b/Library/Formula/cgdb.rb
index 96aa3dc23..f6635b8a1 100644
--- a/Library/Formula/cgdb.rb
+++ b/Library/Formula/cgdb.rb
@@ -1,9 +1,9 @@
require "formula"
class Cgdb < Formula
- homepage "http://cgdb.github.io/"
- url "http://cgdb.me/files/cgdb-0.6.7.tar.gz"
- sha1 "5e29e306502888dd660a9dd55418e5c190ac75bb"
+ homepage "https://cgdb.github.io/"
+ url "http://cgdb.me/files/cgdb-0.6.8.tar.gz"
+ sha1 "0892ae59358fa98264269cf6fe57928314ef7942"
bottle do
sha1 "97d618f51a59e82d00e9957e545cbf8c55430919" => :mavericks
@@ -16,14 +16,13 @@ class Cgdb < Formula
depends_on "autoconf" => :build
depends_on "automake" => :build
- depends_on "help2man" => :build
end
+ depends_on "help2man" => :build
depends_on "readline"
def install
system "sh", "autogen.sh" if build.head?
-
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-readline=#{Formula['readline'].opt_prefix}"