diff options
| author | Adam Vandenberg | 2014-07-20 13:14:18 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-07-20 14:11:40 -0700 |
| commit | 269aab277a463f5079736979dfc1a708a38cac95 (patch) | |
| tree | 14679e250c0278bb14bb32ef421638e794dd961c /Library/Formula | |
| parent | 857ccccece1ee98e09ee8a94bed723e4644ef8eb (diff) | |
| download | homebrew-269aab277a463f5079736979dfc1a708a38cac95.tar.bz2 | |
cgdb: update style
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/cgdb.rb | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Library/Formula/cgdb.rb b/Library/Formula/cgdb.rb index d1e30ab34..5ca7d5bfd 100644 --- a/Library/Formula/cgdb.rb +++ b/Library/Formula/cgdb.rb @@ -1,19 +1,17 @@ -require 'formula' +require "formula" class Cgdb < Formula - homepage 'http://cgdb.github.io/' - url 'http://cgdb.me/files/cgdb-0.6.7.tar.gz' - sha1 '5e29e306502888dd660a9dd55418e5c190ac75bb' + homepage "http://cgdb.github.io/" + url "http://cgdb.me/files/cgdb-0.6.7.tar.gz" + sha1 "5e29e306502888dd660a9dd55418e5c190ac75bb" - depends_on 'readline' + bottle do + end - # 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' + depends_on "readline" def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-readline=#{Formula['readline'].opt_prefix}" system "make install" |
