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.
(cherry picked from commit 5d977918e257e1923a810cadf1abe270cf1f28ea)

Signed-off-by: David Höppner <0xffea@gmail.com>
master
Alexis Hildebrandt 2009-12-28 13:20:37 +01:00 committed by David Höppner
parent fe96ff7caf
commit 5a48c4015f
1 changed files with 12 additions and 0 deletions

12
Formula/libtasn.rb Normal file
View File

@ -0,0 +1,12 @@
require 'formula'
class Libtasn <Formula
url 'http://ftp.gnu.org/gnu/libtasn1/libtasn1-2.3.tar.gz'
homepage 'http://www.gnu.org/software/libtasn1/'
md5 '4f0918cf8fe8b2b4ba189938772d1dd2'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end