blob: 09aed1989bdfe85f6ccb712a452ce0ee5da4864e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class Libtasn1 < Formula
homepage 'http://www.gnu.org/software/libtasn1/'
url 'http://ftpmirror.gnu.org/libtasn1/libtasn1-3.4.tar.gz'
mirror 'http://ftp.gnu.org/gnu/libtasn1/libtasn1-3.4.tar.gz'
sha1 'f0e95f58b3c37405d48b91a585b517a4134586a9'
bottle do
cellar :any
sha1 "ea965f6a6a987c3fd7b687efd24ff1ee7c35f98c" => :mavericks
sha1 "86b57809fd4db333e400da028432aa0f7661c3f6" => :mountain_lion
sha1 "6d31d4239ce62fb2721e921036d05ada7e68e955" => :lion
end
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|