b32806204e
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
24 lines
889 B
Ruby
24 lines
889 B
Ruby
require 'formula'
|
|
|
|
class Botan < Formula
|
|
homepage 'http://botan.randombit.net/'
|
|
url 'http://botan.randombit.net/files/Botan-1.10.4.tbz'
|
|
sha1 'a000b6d052cd6f5328bcae360f4e11e9b60708f4'
|
|
|
|
option 'enable-debug', 'Enable debug build of Botan'
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}"]
|
|
args << "--cpu=x86_64" if MacOS.prefer_64_bit?
|
|
args << "--enable-debug" if build.include? "enable-debug"
|
|
# The --cc option needs "clang" or "gcc" and not the full path.
|
|
args << "--cc=#{ENV.compiler.to_s}"
|
|
|
|
system "./configure.py", *args
|
|
# "-soname" can lead to issues like https://github.com/mxcl/homebrew/issues/11972
|
|
inreplace "Makefile", "-Wl,-soname", "-dynamiclib -install_name "
|
|
# 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}"
|
|
end
|
|
end
|