46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Botan < Formula
|
|
homepage 'http://botan.randombit.net/'
|
|
url 'http://botan.randombit.net/files/Botan-1.10.8.tbz'
|
|
sha1 'a7ba0be11629143043da078a4c044eac3369b4ec'
|
|
|
|
option 'enable-debug', 'Enable debug build of Botan'
|
|
|
|
# upstream ticket: https://bugs.randombit.net/show_bug.cgi?id=267
|
|
patch :DATA
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--docdir=#{share}/doc
|
|
--cpu=#{MacOS.preferred_arch}
|
|
--cc=#{ENV.compiler}
|
|
--os=darwin
|
|
--with-openssl
|
|
--with-zlib
|
|
--with-bzip2
|
|
]
|
|
|
|
args << "--enable-debug" if build.include? "enable-debug"
|
|
|
|
system "./configure.py", *args
|
|
# 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
|
|
|
|
__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}
|