23 lines
699 B
Ruby
23 lines
699 B
Ruby
require 'formula'
|
|
|
|
class Libtasn1 < Formula
|
|
homepage 'http://www.gnu.org/software/libtasn1/'
|
|
url 'http://ftpmirror.gnu.org/libtasn1/libtasn1-3.5.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/libtasn1/libtasn1-3.5.tar.gz'
|
|
sha1 '7e38f027c765eb5434bf050aef0f20aee45e3420'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "a869428872e2199e8dd65dbddf1fcfe85623480f" => :mavericks
|
|
sha1 "7563ceb8d9607476b56e9bc76702dac3ae5a1f53" => :mountain_lion
|
|
sha1 "ed91e13556c66df19e55846c2f8d6d75f8fb5c44" => :lion
|
|
end
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|