2009-12-28 12:20:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libtasn1 < Formula
|
2009-12-28 12:20:37 +00:00
|
|
|
homepage 'http://www.gnu.org/software/libtasn1/'
|
2012-12-14 13:06:49 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/libtasn1/libtasn1-3.2.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/libtasn1/libtasn1-3.2.tar.gz'
|
|
|
|
sha1 'a4bfcc575ca6e82e2b5bc1f39a8e0cc198b6ed19'
|
2009-12-28 12:20:37 +00:00
|
|
|
|
|
|
|
def install
|
2010-06-10 17:08:52 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
2009-12-28 12:20:37 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|