blob: e515e275ed2767bbb2c102821109210c42295f93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class LibgpgError < Formula
url 'ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.10.tar.bz2'
homepage 'http://www.gnupg.org/'
sha1 '95b324359627fbcb762487ab6091afbe59823b29'
def install
ENV.j1
ENV.universal_binary # build fat so wine can use it
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|