f7737416a8
Closes Homebrew/homebrew#19554. Closes Homebrew/homebrew#19570. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
467 B
Ruby
16 lines
467 B
Ruby
require 'formula'
|
|
|
|
class Libtasn1 < Formula
|
|
homepage 'http://www.gnu.org/software/libtasn1/'
|
|
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'
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|