homebrew-core/Formula/cgdb.rb

22 lines
655 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Cgdb < Formula
2013-04-07 02:34:41 +00:00
homepage 'http://cgdb.github.io/'
url 'http://cgdb.me/files/cgdb-0.6.7.tar.gz'
sha1 '5e29e306502888dd660a9dd55418e5c190ac75bb'
depends_on 'readline'
# man page for cgdb is only there to point people to the info page where all
# of the actual documentation is, so skip cleaning the info to preserve the
# documentation
skip_clean 'share/info'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
2014-02-25 05:09:31 +00:00
"--with-readline=#{Formula['readline'].opt_prefix}"
system "make install"
end
end