Import duplicate formulae from homebrew/duplicates

master
Adam Vandenberg 2011-02-14 11:21:59 -08:00 committed by Misty De Meo
parent efac32cac8
commit a18e0ab27a
1 changed files with 13 additions and 0 deletions

13
Formula/gdb.rb Normal file
View File

@ -0,0 +1,13 @@
require 'formula'
class Gdb <Formula
url 'http://ftp.gnu.org/gnu/gdb/gdb-7.1.tar.bz2'
homepage 'http://www.gnu.org/software/gdb/'
md5 '21dce610476c054687b52770d2ddc657'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end