2010-03-27 22:28:36 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libksba < Formula
|
2010-03-27 22:28:36 +00:00
|
|
|
homepage 'http://www.gnupg.org/related_software/libksba/index.en.html'
|
2013-01-18 04:43:01 +00:00
|
|
|
url 'ftp://ftp.gnupg.org/gcrypt/libksba/libksba-1.3.0.tar.bz2'
|
2013-04-30 18:01:37 +00:00
|
|
|
mirror 'http://ftp.heanet.ie/mirrors/ftp.gnupg.org/gcrypt/libksba/libksba-1.3.0.tar.bz2'
|
2013-01-18 04:43:01 +00:00
|
|
|
sha1 '241afcb2dfbf3f3fc27891a53a33f12d9084d772'
|
2010-03-27 22:28:36 +00:00
|
|
|
|
2010-07-16 17:07:48 +00:00
|
|
|
depends_on 'libgpg-error'
|
2010-03-27 22:28:36 +00:00
|
|
|
|
|
|
|
def install
|
2011-12-12 07:21:16 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2010-03-27 22:28:36 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|