aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJohn P. Speno2013-02-28 14:36:10 -0500
committerJack Nagel2013-03-13 22:54:23 -0500
commita749ef21759557c170cc24ab087589d8db547ec2 (patch)
treebc8517837a0ee081ef12ec4adccc1ef5a753b0ef /Library
parentf0e51533c5cec09dc92bcb54ac31041b2b061873 (diff)
downloadhomebrew-a749ef21759557c170cc24ab087589d8db547ec2.tar.bz2
New fomrula: gsasl
The gsasl package is a superset of libgsasl. Installing it provides the gsasl libraries, the header files, a command line tool called gsasl to access the library from the shell and the manual. Closes #16428. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gsasl.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/gsasl.rb b/Library/Formula/gsasl.rb
new file mode 100644
index 000000000..f1fac97ba
--- /dev/null
+++ b/Library/Formula/gsasl.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Gsasl < Formula
+ homepage 'http://www.gnu.org/software/gsasl/'
+ url 'http://ftpmirror.gnu.org/gsasl/gsasl-1.8.0.tar.gz'
+ mirror 'http://ftp.gnu.org/gsasl/gsasl-1.8.0.tar.gz'
+ sha1 '343fd97ae924dc406986c02fb9b889f4114239ae'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--with-gssapi-impl=mit",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end