14 lines
373 B
Ruby
14 lines
373 B
Ruby
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
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|