homebrew-core/Formula/sip.rb

29 lines
867 B
Ruby
Raw Normal View History

2009-10-30 10:47:33 +00:00
require 'formula'
# NOTE this should be provided by pip eventually
# currently easy_install doesn't seem to support it
2009-10-30 10:47:33 +00:00
class Sip <Formula
url 'http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.10.tar.gz'
2009-10-30 10:47:33 +00:00
homepage 'http://www.riverbankcomputing.co.uk/software/sip'
md5 '4b8f7361839b33868dd3cc576509ba8e'
2009-10-30 10:47:33 +00:00
def install
system "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
This formula won't function until you add the following to your PYTHONPATH
environment variable:
#{HOMEBREW_PREFIX}/lib/python
This is why you would ideally install sip using pip or easy_install. But this
can't work because this package doesn't support Python's disttools.
EOS
end
2009-10-30 10:47:33 +00:00
end