aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-28 13:20:37 +0100
committerDavid Höppner2010-01-30 13:51:30 +0100
commit920520c788d0b08f641a006992ca61ec288b04f1 (patch)
treea603140e8fe9babb28d965ff4ce68397c239015d /Library
parent55c86aa3ea75da3c5f785034be73fc28d43f56e0 (diff)
downloadhomebrew-920520c788d0b08f641a006992ca61ec288b04f1.tar.bz2
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>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libtasn.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libtasn.rb b/Library/Formula/libtasn.rb
new file mode 100644
index 000000000..547f2ea90
--- /dev/null
+++ b/Library/Formula/libtasn.rb
@@ -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