2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
|
|
|
class Gnutls <Formula
|
2009-11-16 07:27:10 +00:00
|
|
|
@url='http://ftp.gnu.org/pub/gnu/gnutls/gnutls-2.8.5.tar.bz2'
|
2009-09-09 14:11:58 +00:00
|
|
|
@homepage='http://www.gnu.org/software/gnutls/gnutls.html'
|
2009-11-16 07:27:10 +00:00
|
|
|
@sha1='5121c52efd4718ad3d8b641d28343b0c6abaa571'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'libgcrypt'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
|
|
|
def install
|
2009-11-16 07:27:10 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--disable-guile"
|
2009-09-09 14:11:58 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|