93 lines
3.3 KiB
Ruby
93 lines
3.3 KiB
Ruby
class Makensis < Formula
|
|
desc "System to create Windows installers"
|
|
homepage "https://nsis.sourceforge.io/"
|
|
url "https://downloads.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-src.tar.bz2"
|
|
sha256 "5f6d135362c70f6305317b3af6d8398184ac1a22d3f23b9c4164543c13fb8d60"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
rebuild 1
|
|
sha256 "0ebc2808e9d36de34b3687e5afe8897b468d0cdfd997e92e0fa8787dbc088baa" => :high_sierra
|
|
sha256 "0a5adaa8cc82a78075755a80f68a72e34f3a59c1e72823c49c2c1d23bd5209ff" => :sierra
|
|
sha256 "932fd48662e03d1f964482ac5aa812c60486126f1138b2f774aeb7641e6b406b" => :el_capitan
|
|
sha256 "4e7ee251f0e53b7cc3b254f6d7ee5a247f18287327f25dbba586ee75a43084fb" => :yosemite
|
|
end
|
|
|
|
# From https://nsis.sourceforge.io/Special_Builds#Advanced_logging
|
|
option "with-advanced-logging", "Enable advanced logging of all installer actions"
|
|
|
|
# Build makensis so installers can handle strings > 1024 characters
|
|
# From https://nsis.sourceforge.io/Special_Builds#Large_strings
|
|
# Upstream RFE to make this default the default behavior is
|
|
# https://sourceforge.net/p/nsis/feature-requests/542/
|
|
option "with-large-strings", "Enable strings up to 8192 characters instead of default 1024"
|
|
|
|
depends_on "mingw-w64" => :build
|
|
depends_on "scons" => :build
|
|
|
|
resource "nsis" do
|
|
url "https://downloads.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1.zip"
|
|
sha256 "deef3e3d90ab1a9e0ef294fff85eead25edbcb429344ad42fc9bc42b5c3b1fb5"
|
|
end
|
|
|
|
# v1.2.8 is outdated, but the last version available as compiled DLL
|
|
resource "zlib-win32" do
|
|
url "https://downloads.sourceforge.net/project/libpng/zlib/1.2.8/zlib128-dll.zip"
|
|
sha256 "a03fd15af45e91964fb980a30422073bc3f3f58683e9fdafadad3f7db10762b1"
|
|
end
|
|
|
|
# scons appears to have no builtin way to override the compiler selection,
|
|
# and the only options supported on macOS are 'gcc' and 'g++'.
|
|
# Use the right compiler by forcibly altering the scons config to set these
|
|
patch :DATA
|
|
|
|
def install
|
|
# requires zlib (win32) to build utils
|
|
resource("zlib-win32").stage do
|
|
@zlib_path = Dir.pwd
|
|
end
|
|
|
|
# Don't strip, see https://github.com/Homebrew/homebrew/issues/28718
|
|
args = ["STRIP=0", "ZLIB_W32=#{@zlib_path}", "SKIPUTILS=NSIS Menu",
|
|
"VERSION=#{version}"]
|
|
args << "NSIS_CONFIG_LOG=yes" if build.with? "advanced-logging"
|
|
args << "NSIS_MAX_STRLEN=8192" if build.with? "large-strings"
|
|
scons "makensis", *args
|
|
bin.install "build/urelease/makensis/makensis"
|
|
(share/"nsis").install resource("nsis")
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/makensis", "-VERSION"
|
|
(testpath/"test.nsi").write <<~EOS
|
|
# name the installer
|
|
OutFile "test.exe"
|
|
# default section start; every NSIS script has at least one section.
|
|
Section
|
|
# default section end
|
|
SectionEnd
|
|
EOS
|
|
system "#{bin}/makensis", "#{testpath}/test.nsi"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/SCons/config.py b/SCons/config.py
|
|
index a344456..37c575b 100755
|
|
--- a/SCons/config.py
|
|
+++ b/SCons/config.py
|
|
@@ -1,3 +1,5 @@
|
|
+import os
|
|
+
|
|
Import('defenv')
|
|
|
|
### Configuration options
|
|
@@ -440,6 +442,9 @@ Help(cfg.GenerateHelpText(defenv))
|
|
env = Environment()
|
|
cfg.Update(env)
|
|
|
|
+defenv['CC'] = os.environ['CC']
|
|
+defenv['CXX'] = os.environ['CXX']
|
|
+
|
|
def AddValuedDefine(define):
|
|
defenv.Append(NSIS_CPPDEFINES = [(define, env[define])])
|