blob: b41cf51927441d7a196020bbddd98d256214813c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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'
def install
ENV.append 'CFLAGS', '-std=gnu89'
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|