homebrew-core/Formula/libgpg-error.rb
chdiza f324dc504f libgpg-error 1.12
Closes Homebrew/homebrew#21083.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2013-07-08 23:17:08 -07:00

17 lines
529 B
Ruby

require 'formula'
class LibgpgError < Formula
homepage 'http://www.gnupg.org/'
url 'ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.12.tar.bz2'
mirror 'http://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.12.tar.bz2'
sha1 '259f359cd1440b21840c3a78e852afd549c709b8'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end