Skip to content

Commit

Permalink
Split out from Homebrew#37014 per "one commit per formula, one formul…
Browse files Browse the repository at this point in the history
…a per commit" guideline.
  • Loading branch information
geoff-nixon committed Feb 22, 2015
1 parent e1c6ee5 commit f785441
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions Library/Formula/sipsak.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f785441

Please sign in to comment.