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/'
|
2013-03-27 05:23:44 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/libtasn1/libtasn1-3.3.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/libtasn1/libtasn1-3.3.tar.gz'
|
|
|
|
sha1 '594a2b65742e45b0abf140ea504fc06de2ca3b1e'
|
2009-12-28 12:20:37 +00:00
|
|
|
|
2013-05-02 05:59:12 +00:00
|
|
|
option :universal
|
|
|
|
|
2009-12-28 12:20:37 +00:00
|
|
|
def install
|
2013-05-02 05:59:12 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
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
|