forked from keitheis/homebrew-dupes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdb.rb
55 lines (44 loc) · 1.38 KB
/
gdb.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
require 'formula'
class UniversalBrewedPython < Requirement
satisfy { archs_for_command("python").universal? }
def message; <<-EOS.undent
A build of GDB using a brewed Python was requested, but Python is not
a universal build.
GDB requires Python to be built as a universal binary or it will fail
if attempting to debug a 32-bit binary on a 64-bit host.
EOS
end
end
class Gdb < Formula
homepage 'http://www.gnu.org/software/gdb/'
url 'http://ftpmirror.gnu.org/gdb/gdb-7.6.tar.bz2'
mirror 'http://ftp.gnu.org/gnu/gdb/gdb-7.6.tar.bz2'
sha1 'b64095579a20e011beeaa5b264fe23a9606ee40f'
depends_on 'readline'
if build.include? 'with-brewed-python'
depends_on UniversalBrewedPython
end
option 'with-brewed-python', 'Use the Homebrew version of Python'
def install
args = [
"--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--with-system-readline"
]
if build.include? 'with-brewed-python'
args << "--with-python=#{HOMEBREW_PREFIX}"
else
args << "--with-python=/usr"
end
system "./configure", *args
system "make"
system "make install"
end
def caveats; <<-EOS.undent
gdb requires special privileges to access Mach ports.
You will need to codesign the binary. For instructions, see:
http://sourceware.org/gdb/wiki/BuildingOnDarwin
EOS
end
end