homebrew-core/Formula/cgdb.rb

32 lines
867 B
Ruby
Raw Normal View History

2014-07-20 20:14:18 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Cgdb < Formula
homepage "https://cgdb.github.io/"
url "http://cgdb.me/files/cgdb-0.6.8.tar.gz"
sha1 "0892ae59358fa98264269cf6fe57928314ef7942"
2014-07-20 20:14:18 +00:00
bottle do
2015-01-14 20:23:39 +00:00
sha1 "ad041a0d959f9c78acbaf9e702028418f4fbaced" => :yosemite
sha1 "49b22ef93ad50cc3189eab87c887aac4bf7d5be6" => :mavericks
sha1 "4401a042175f6071740d1d87bb5993ebb3b76d2a" => :mountain_lion
2014-07-20 20:14:18 +00:00
end
head do
url "https://github.com/cgdb/cgdb.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
depends_on "help2man" => :build
2014-07-20 20:14:18 +00:00
depends_on "readline"
def install
system "sh", "autogen.sh" if build.head?
2014-07-20 20:14:18 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
2014-02-25 05:09:31 +00:00
"--with-readline=#{Formula['readline'].opt_prefix}"
system "make install"
end
end