forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
python24.rb
49 lines (42 loc) · 1.62 KB
/
python24.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
require 'formula'
class Python24 < Formula
homepage 'http://www.python.org/download/releases/2.4.6/'
url 'http://www.python.org/ftp/python/2.4.6/Python-2.4.6.tgz'
md5 '7564b2b142b1b8345cd5358b7aaaa482'
depends_on 'gdbm' => :optional
depends_on 'readline'
# Skip binaries so modules will load;
# skip lib because it is mostly Python files
skip_clean ['bin', 'lib']
# Fixed to compile on Lion by reusing a patch from the Plone guys.
def patches
{:p0 => [
"https://raw.github.com/collective/buildout.python/master/src/python-2.4-darwin-10.6.patch"
]}
end
def prefix_site_packages
# The HOMEBREW_PREFIX location of site-packages
HOMEBREW_PREFIX + "lib/python2.4/site-packages"
end
def install
# The system readline is broken (bus error), and the formula is keg_only.
# It seems presumptuous to `brew link readline`. So:
ENV['CC'] = ["gcc", "-I#{Formula.factory('readline').prefix}/include",
"-L#{Formula.factory('readline').prefix}/lib"].join(" ")
system "./configure", "--prefix=#{prefix}", "--disable-tk",
"MACOSX_DEPLOYMENT_TARGET=#{MACOS_VERSION}", "--enable-ipv6",
"--enable-shared"
ENV.j1
system "/usr/bin/make"
# no man pages; only install 'python2.4' binary, not 'python'
system "make altbininstall"
system "make libinstall"
system "make inclinstall"
system "make libainstall"
system "make sharedinstall"
system "make oldsharedinstall"
# Add the Homebrew prefix path to site-packages via a .pth
prefix_site_packages.mkpath
(lib + "python2.4/site-packages/homebrew.pth").write prefix_site_packages
end
end