homebrew-core/Formula/sip.rb

27 lines
881 B
Ruby
Raw Normal View History

2009-10-30 10:47:33 +00:00
require 'formula'
2010-07-13 21:07:54 +00:00
# Note: this project doesn't save old releases, so it breaks often as
# downloads disappear.
2009-10-30 10:47:33 +00:00
class Sip <Formula
url 'http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.10.5.tar.gz'
2009-10-30 10:47:33 +00:00
homepage 'http://www.riverbankcomputing.co.uk/software/sip'
md5 '0a591ef6e59aa16e56822d3eb9fe21b8'
2009-10-30 10:47:33 +00:00
def install
# Force building against System python, because we need a Framework build.
# See: http://github.com/mxcl/homebrew/issues/issue/930
system "/usr/bin/python", "configure.py",
"--destdir=#{lib}/python",
"--bindir=#{bin}",
"--incdir=#{include}"
2009-10-30 10:47:33 +00:00
system "make install"
end
def caveats; <<-EOS
2010-07-13 21:07:54 +00:00
This formula won't function until you amend your PYTHONPATH like so:
export PYTHON_PATH=#{HOMEBREW_PREFIX}/lib/python:$PYTHON_PATH
EOS
end
2009-10-30 10:47:33 +00:00
end