blob: 62cb90a849ecef6f2d8117887ba95c1851b455eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Libosip <Formula
url 'http://ftp.gnu.org/gnu/osip/libosip2-3.3.0.tar.gz'
homepage 'http://www.gnu.org/software/osip/'
md5 '81493bb4d4ae6d55b71a0d4369339125'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|