2009-11-02 03:00:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libxml2 < Formula
|
2009-11-02 03:00:35 +00:00
|
|
|
homepage 'http://xmlsoft.org'
|
2012-06-07 03:56:00 +00:00
|
|
|
url 'ftp://xmlsoft.org/libxml2/libxml2-2.8.0.tar.gz'
|
|
|
|
sha256 'f2e2d0e322685193d1affec83b21dc05d599e17a7306d7b90de95bb5b9ac622a'
|
2009-11-02 03:00:35 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
keg_only :provided_by_osx
|
2009-11-02 03:00:35 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2326
|
|
|
|
cause "Undefined symbols when linking"
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2012-09-02 18:46:24 +00:00
|
|
|
option :universal
|
|
|
|
option 'with-python', 'Compile the libxml2 Python 2.x modules'
|
2010-11-02 06:01:25 +00:00
|
|
|
|
2009-11-02 03:00:35 +00:00
|
|
|
def install
|
2012-09-02 18:46:24 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2010-11-02 06:01:25 +00:00
|
|
|
|
2012-06-07 03:56:00 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--without-python"
|
|
|
|
system "make"
|
|
|
|
ENV.deparallelize
|
|
|
|
system "make install"
|
|
|
|
|
2012-09-02 18:46:24 +00:00
|
|
|
if build.include? 'with-python'
|
2012-06-07 03:56:00 +00:00
|
|
|
# Build Python bindings manually
|
|
|
|
cd 'python' do
|
|
|
|
python_lib = lib/which_python/'site-packages'
|
|
|
|
ENV.append 'PYTHONPATH', python_lib
|
|
|
|
python_lib.mkpath
|
|
|
|
|
|
|
|
archs = archs_for_command("python")
|
|
|
|
archs.remove_ppc!
|
|
|
|
arch_flags = archs.as_arch_flags
|
|
|
|
|
|
|
|
ENV.append 'CFLAGS', arch_flags
|
|
|
|
ENV.append 'LDFLAGS', arch_flags
|
|
|
|
|
2012-09-02 18:46:24 +00:00
|
|
|
system "python", "setup.py",
|
|
|
|
"install_lib",
|
|
|
|
"--install-dir=#{python_lib}"
|
2012-06-07 03:56:00 +00:00
|
|
|
end
|
2010-11-02 06:01:25 +00:00
|
|
|
end
|
2012-06-07 03:56:00 +00:00
|
|
|
end
|
2010-11-02 06:01:25 +00:00
|
|
|
|
2012-06-07 03:56:00 +00:00
|
|
|
def which_python
|
|
|
|
"python" + `python -c 'import sys;print(sys.version[:3])'`.strip
|
2009-11-02 03:00:35 +00:00
|
|
|
end
|
|
|
|
end
|