7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
461 B
Ruby
16 lines
461 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", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--disable-guile"
|
|
system "make install"
|
|
end
|
|
end
|