blob: 0d20cb0625a72c4abb84f4e7b4be340faa246b8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Libgsasl < Formula
url 'http://ftpmirror.gnu.org/gsasl/libgsasl-1.6.1.tar.gz'
homepage 'http://www.gnu.org/software/gsasl/'
md5 '143ab88d06a5217915e6b649d7ffc018'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|