fd02b0b71c
The ASN.1 library used by GnuTLS, GNU Shishi and some other packages. It was written by Fabio Fiorina, and has been shipped as part of GnuTLS for some time but is now a proper GNU package. The goal of this implementation is to be highly portable, and only require an ANSI C89 platform.
14 lines
361 B
Ruby
14 lines
361 B
Ruby
require 'formula'
|
|
|
|
class Libtasn1 <Formula
|
|
url 'http://ftp.gnu.org/gnu/libtasn1/libtasn1-2.3.tar.gz'
|
|
homepage 'http://www.gnu.org/software/libtasn1/'
|
|
md5 '4f0918cf8fe8b2b4ba189938772d1dd2'
|
|
|
|
aka :libtasn
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|