diff options
| author | Russ | 2009-10-30 10:47:33 +0000 |
|---|---|---|
| committer | Max Howell | 2009-11-07 18:22:34 +0000 |
| commit | 9a0e572e565363ab58295678a5ac36d3fe6fb74b (patch) | |
| tree | 70de2b4a8db2748642b73d129a1095046a27fb54 /Library | |
| parent | e2293bddfe5029c6a8b10129984f4f295675a492 (diff) | |
| download | homebrew-9a0e572e565363ab58295678a5ac36d3fe6fb74b.tar.bz2 | |
Riverbank SIP
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/sip.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/sip.rb b/Library/Formula/sip.rb new file mode 100644 index 000000000..797a4ca63 --- /dev/null +++ b/Library/Formula/sip.rb @@ -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 |
