diff options
| author | Mike McQuaid | 2010-12-23 21:07:14 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-23 21:07:14 +0000 |
| commit | 97930ba7b68c59a8c89168dd736a795471d7afd3 (patch) | |
| tree | 343d2c95e40045205921f6df1af8a9e117128956 /Library/Formula | |
| parent | 74b775aca9974b172079854ed5e771ac8a0ff424 (diff) | |
| download | homebrew-97930ba7b68c59a8c89168dd736a795471d7afd3.tar.bz2 | |
Add SipCalc formula.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sipcalc.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/sipcalc.rb b/Library/Formula/sipcalc.rb new file mode 100644 index 000000000..a489a93b6 --- /dev/null +++ b/Library/Formula/sipcalc.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Sipcalc <Formula + url 'http://www.routemeister.net/projects/sipcalc/files/sipcalc-1.1.5.tar.gz' + homepage 'http://www.routemeister.net/projects/sipcalc/' + md5 '8d59e70d21d8f0568e310d342e3e2306' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
