2010-02-12 19:14:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Botan < Formula
|
2010-02-12 19:14:45 +00:00
|
|
|
homepage 'http://botan.randombit.net/'
|
2013-04-10 01:05:58 +00:00
|
|
|
url 'http://botan.randombit.net/files/Botan-1.10.5.tbz'
|
|
|
|
sha1 '998b25d78e139b9c9402919aec4daa1c6118f2fb'
|
2010-02-12 19:14:45 +00:00
|
|
|
|
2012-08-09 05:28:15 +00:00
|
|
|
option 'enable-debug', 'Enable debug build of Botan'
|
2012-02-15 05:25:01 +00:00
|
|
|
|
2010-02-12 19:14:45 +00:00
|
|
|
def install
|
2011-09-02 20:44:15 +00:00
|
|
|
args = ["--prefix=#{prefix}"]
|
|
|
|
args << "--cpu=x86_64" if MacOS.prefer_64_bit?
|
2012-08-09 15:51:54 +00:00
|
|
|
args << "--enable-debug" if build.include? "enable-debug"
|
2013-06-02 18:52:43 +00:00
|
|
|
args << "--cc=#{ENV.compiler}"
|
2011-09-02 20:44:15 +00:00
|
|
|
|
|
|
|
system "./configure.py", *args
|
2012-06-25 10:41:47 +00:00
|
|
|
# A hack to force them use our CFLAGS. MACH_OPT is empty in the Makefile
|
|
|
|
# but used for each call to cc/ld.
|
|
|
|
system "make", "install", "MACH_OPT=#{ENV.cflags}"
|
2010-02-12 19:14:45 +00:00
|
|
|
end
|
|
|
|
end
|