2010-06-05 17:29:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libosip < Formula
|
2010-06-05 17:29:51 +00:00
|
|
|
homepage 'http://www.gnu.org/software/osip/'
|
2012-07-28 15:32:14 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/osip/libosip2-3.6.0.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/osip/libosip2-3.6.0.tar.gz'
|
|
|
|
sha1 '6d81be8180a46e045fce676d55913433a5e147c8'
|
2010-06-05 17:29:51 +00:00
|
|
|
|
|
|
|
def install
|
2012-07-28 15:32:14 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-06-05 17:29:51 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|