b13bb3470c
Wine no longer uses these, so the comments are outdated. Continue to build universal by default, though, to support legacy installs. Eventually they can grow universal options or just build native-only after a sufficient period of time. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
388 B
Ruby
14 lines
388 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
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|