homebrew-core/Formula/libgpg-error.rb

15 lines
420 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class LibgpgError < Formula
homepage 'http://www.gnupg.org/'
url 'ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.10.tar.bz2'
2010-12-30 10:34:52 +00:00
sha1 '95b324359627fbcb762487ab6091afbe59823b29'
def install
ENV.universal_binary # build fat so wine can use it
2010-07-16 16:59:59 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end