28ab97e6b0
Previous version didn't compile on Snow Leopard. TODO: Enable Guile support if requested, or if Guile has previously been installed. I'll leave it for any Guile users out there to provide a patch.
16 lines
464 B
Ruby
16 lines
464 B
Ruby
require 'formula'
|
|
|
|
class Gnutls <Formula
|
|
@url='http://ftp.gnu.org/pub/gnu/gnutls/gnutls-2.8.5.tar.bz2'
|
|
@homepage='http://www.gnu.org/software/gnutls/gnutls.html'
|
|
@sha1='5121c52efd4718ad3d8b641d28343b0c6abaa571'
|
|
|
|
depends_on 'libgcrypt'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-guile"
|
|
system "make install"
|
|
end
|
|
end
|