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/'
|
2014-02-16 03:06:52 +00:00
|
|
|
url 'http://botan.randombit.net/files/Botan-1.10.7.tbz'
|
|
|
|
sha1 '2cb502e6d8ef4dfcccd28d0aca33c7e5e551e566'
|
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
|
|
|
|
2014-02-16 03:06:52 +00:00
|
|
|
# upstream ticket: https://bugs.randombit.net/show_bug.cgi?id=267
|
2014-03-18 03:44:54 +00:00
|
|
|
patch :DATA
|
2014-02-16 03:06:52 +00:00
|
|
|
|
2010-02-12 19:14:45 +00:00
|
|
|
def install
|
2013-11-05 05:17:18 +00:00
|
|
|
args = %W[
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--docdir=#{share}/doc
|
|
|
|
--cpu=#{MacOS.preferred_arch}
|
|
|
|
--cc=#{ENV.compiler}
|
|
|
|
--os=darwin
|
|
|
|
--with-openssl
|
|
|
|
--with-zlib
|
|
|
|
--with-bzip2
|
|
|
|
]
|
|
|
|
|
2012-08-09 15:51:54 +00:00
|
|
|
args << "--enable-debug" if build.include? "enable-debug"
|
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
|
2014-02-16 03:06:52 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
--- a/src/build-data/makefile/unix_shr.in
|
|
|
|
+++ b/src/build-data/makefile/unix_shr.in
|
|
|
|
@@ -57,8 +57,8 @@
|
|
|
|
LIBNAME = %{lib_prefix}libbotan
|
|
|
|
STATIC_LIB = $(LIBNAME)-$(SERIES).a
|
|
|
|
|
|
|
|
-SONAME = $(LIBNAME)-$(SERIES).%{so_suffix}.%{so_abi_rev}
|
|
|
|
-SHARED_LIB = $(SONAME).%{version_patch}
|
|
|
|
+SONAME = $(LIBNAME)-$(SERIES).%{so_abi_rev}.%{so_suffix}
|
|
|
|
+SHARED_LIB = $(LIBNAME)-$(SERIES).%{so_abi_rev}.%{version_patch}.%{so_suffix}
|
|
|
|
|
|
|
|
SYMLINK = $(LIBNAME)-$(SERIES).%{so_suffix}
|