2014-06-06 03:06:45 +00:00
|
|
|
require "formula"
|
2009-12-28 12:20:37 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libtasn1 < Formula
|
2014-06-06 03:06:45 +00:00
|
|
|
homepage "https://www.gnu.org/software/libtasn1/"
|
|
|
|
url "http://ftpmirror.gnu.org/libtasn1/libtasn1-3.6.tar.gz"
|
|
|
|
mirror "https://ftp.gnu.org/gnu/libtasn1/libtasn1-3.6.tar.gz"
|
|
|
|
sha1 "0b0ac4388ee08f90b90dccfec63e5b026f23cf2c"
|
2009-12-28 12:20:37 +00:00
|
|
|
|
2014-02-22 15:39:01 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-06-06 03:18:56 +00:00
|
|
|
sha1 "3483f10166453c12db565758595ee5bb39dfe563" => :mavericks
|
|
|
|
sha1 "85c4ec48dad24eca7417d61665579451d7b068ac" => :mountain_lion
|
|
|
|
sha1 "1db5e62f67e941a610b9a42e93662a78989a454d" => :lion
|
2014-02-22 15:39:01 +00:00
|
|
|
end
|
|
|
|
|
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
|