homebrew-core/Formula/libtasn1.rb
Alexis Hildebrandt fd02b0b71c Libtasn 2.3
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.
2010-01-24 12:27:35 +00:00

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