a0759ae93a
Many formula were imported during the development of the dependency branch.
15 lines
409 B
Ruby
15 lines
409 B
Ruby
require 'brewkit'
|
|
|
|
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
|