7dd44370f7
This has had ENV.j1 since the beginning, but it seems to build fine these days. If it still fails for someone it needs a comment with justification. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
420 B
Ruby
14 lines
420 B
Ruby
require 'formula'
|
|
|
|
class LibgpgError < Formula
|
|
homepage 'http://www.gnupg.org/'
|
|
url 'ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.10.tar.bz2'
|
|
sha1 '95b324359627fbcb762487ab6091afbe59823b29'
|
|
|
|
def install
|
|
ENV.universal_binary # build fat so wine can use it
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|