2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
|
|
|
class Libgcrypt <Formula
|
2010-08-29 18:50:51 +00:00
|
|
|
url 'ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.4.6.tar.bz2'
|
|
|
|
sha1 '445b9e158aaf91e24eae3d1040c6213e9d9f5ba6'
|
2010-07-16 17:14:58 +00:00
|
|
|
homepage 'http://directory.fsf.org/project/libgcrypt/'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
2009-09-21 18:00:13 +00:00
|
|
|
depends_on 'libgpg-error'
|
2009-09-09 14:11:58 +00:00
|
|
|
|
|
|
|
def install
|
2010-12-29 04:52:32 +00:00
|
|
|
ENV.universal_binary # build fat so wine can use it
|
|
|
|
|
2009-12-21 00:04:42 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2010-02-13 11:54:21 +00:00
|
|
|
"--disable-asm",
|
|
|
|
"--with-gpg-error-prefix=#{HOMEBREW_PREFIX}"
|
2009-12-21 00:04:42 +00:00
|
|
|
# Separate steps, or parallel builds fail
|
|
|
|
system "make"
|
2009-09-09 14:11:58 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|