Riverbank SIP

This commit is contained in:
Russ 2009-10-30 10:47:33 +00:00 committed by Max Howell
parent 1cddf1a46b
commit 403046a560

13
Formula/sip.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Sip <Formula
url 'http://www.riverbankcomputing.co.uk/static/Downloads/sip4/sip-4.9.tar.gz'
homepage 'http://www.riverbankcomputing.co.uk/software/sip'
md5 ''
def install
system "python", "./configure.py"
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end