blob: 678916654bde51202b65baedcfc642d6b58ed36e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Libgcrypt <Formula
@url='ftp://ftp.gnupg.org//gcrypt/libgcrypt/libgcrypt-1.4.4.tar.bz2'
@homepage='http://www.gnupg.org/'
@sha1='3987f0efcbb7048c136d5c859e88eee1763a14f6'
depends_on 'libgpg-error'
def install
ENV.j1
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-asm"
system "make install"
end
end
|