homebrew-core/Formula/sip.rb

14 lines
378 B
Ruby
Raw Normal View History

2009-10-30 10:47:33 +00:00
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