aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python.rb
blob: c1d15a8878ae931483ce0cb6dc3e343d2549dea4 (plain)
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
require 'brewkit'

class Readline <Formula
  @url='ftp://ftp.gnu.org/gnu/readline/readline-5.2.tar.gz'
  @homepage='http://tiswww.case.edu/php/chet/readline/rltop.html'
  @md5='e39331f32ad14009b9ff49cc10c5e751'
 
  def patches
    (1..14).collect {|n| "ftp://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-%03d"%n}
  end

  def keg_only?
    true
  end

  def install
    system "./configure", "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--infodir=#{info}"
    system "make install"
  end
end

class Python <Formula
  @url='http://www.python.org/ftp/python/2.6.2/Python-2.6.2.tar.bz2'
  @homepage='http://www.python.org/'
  @md5='245db9f1e0f09ab7e0faaa0cf7301011'

  # You can build Python without readline, but you really don't want to.
  depends_on Readline.new

  def skip_clean? path
    path == bin+'python' or path == bin+'python2.6' or # if you strip these, it can't load modules
    path == lib+'python2.6' # save a lot of time
  end

  def install
    system "./configure --prefix='#{prefix}' --with-framework-name=/Developer/SDKs/MacOSX10.5.sdk"
    system "make"
    system "make install"
    
    # lib/python2.6/config contains a copy of libpython.a; make this a link instead
    (lib+'python2.6/config/libpython2.6.a').unlink
    (lib+'python2.6/config/libpython2.6.a').make_link lib+'libpython2.6.a'
  end
end