2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class LibgpgError < Formula
|
2010-03-18 18:00:24 +00:00
|
|
|
homepage 'http://www.gnupg.org/'
|
2014-04-22 04:13:52 +00:00
|
|
|
url 'ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.13.tar.bz2'
|
|
|
|
mirror 'http://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.13.tar.bz2'
|
|
|
|
sha1 '50fbff11446a7b0decbf65a6e6b0eda17b5139fb'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2014-02-22 14:49:16 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-04-22 13:04:26 +00:00
|
|
|
sha1 "1c975ce141fcc44543967cfd83984fcbb2a4bd7d" => :mavericks
|
|
|
|
sha1 "f80ac1daca1a09be3a13a25ed6d0ce3a3940013e" => :mountain_lion
|
|
|
|
sha1 "0ddec43a1845015a046f8ed4f924272eafc1cca7" => :lion
|
2014-02-22 14:49:16 +00:00
|
|
|
end
|
|
|
|
|
2013-01-26 17:57:14 +00:00
|
|
|
option :universal
|
|
|
|
|
2009-09-09 14:11:58 +00:00
|
|
|
def install
|
2013-01-26 17:57:14 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2010-07-16 16:59:59 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-09-09 14:11:58 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|