diff options
| author | Geoff Nixon | 2015-02-22 01:40:20 -0800 |
|---|---|---|
| committer | Tim D. Smith | 2015-02-22 19:14:18 -0800 |
| commit | 551d874d7215398eff5beb935b4989d69935ffe9 (patch) | |
| tree | dcfc2b671944c1226e1ff62317b69cd6c9ded889 /Library | |
| parent | f8d2198b3ca5b89aa919e9176fbe4589c476ea24 (diff) | |
| download | homebrew-551d874d7215398eff5beb935b4989d69935ffe9.tar.bz2 | |
sipsak: update url, homepage
Closes #37067.
Signed-off-by: Tim D. Smith <git@tim-smith.us>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/sipsak.rb | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/Library/Formula/sipsak.rb b/Library/Formula/sipsak.rb index b41cf5192..2ce3d4553 100644 --- a/Library/Formula/sipsak.rb +++ b/Library/Formula/sipsak.rb @@ -1,17 +1,21 @@ -require 'formula' - class Sipsak < Formula - homepage 'http://sipsak.org/' - url 'http://download.berlios.de/sipsak/sipsak-0.9.6-1.tar.gz' - version '0.9.6' - sha1 '6d2fd2c90ea04be749e48927b3e7fc08c52166b6' + homepage "http://sourceforge.net/projects/sipsak.berlios/" + url "https://downloads.sourceforge.net/project/sipsak.berlios/sipsak-0.9.6-1.tar.gz" + version "0.9.6" + sha1 "6d2fd2c90ea04be749e48927b3e7fc08c52166b6" + + depends_on "openssl" def install - ENV.append 'CFLAGS', '-std=gnu89' + ENV.append "CFLAGS", "-std=gnu89" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}" - system "make install" + system "make", "install" + end + + test do + system "#{bin}/sipsak", "-V" end end |
