80 строки
3.1 KiB
Ruby
Executable File
80 строки
3.1 KiB
Ruby
Executable File
class Msodbcsql18AT18321 < Formula
|
|
desc "ODBC Driver for Microsoft(R) SQL Server(R)"
|
|
homepage "https://msdn.microsoft.com/en-us/library/mt654048(v=sql.1).aspx"
|
|
url Hardware::CPU.arch == :arm64 ? "https://download.microsoft.com/download/d/4/7/d47963dd-a254-4d67-a92a-d3d5466df7e4/msodbcsql18-18.3.2.1-arm64.tar.gz" :
|
|
"https://download.microsoft.com/download/d/4/7/d47963dd-a254-4d67-a92a-d3d5466df7e4/msodbcsql18-18.3.2.1-amd64.tar.gz"
|
|
version "18.3.2.1"
|
|
sha256 Hardware::CPU.arch == :arm64 ? "038935552fa7be0f3de24382ca7d1086b9097d903845f05dd9d74ec5c7ef96a7" :
|
|
"f40bd4dc5450d1184b4c8247f5746e79c1d8b244fe25571db20877863611749c"
|
|
|
|
option "without-registration", "Don't register the driver in odbcinst.ini"
|
|
|
|
keg_only :versioned_formula
|
|
depends_on "unixodbc"
|
|
depends_on "openssl"
|
|
|
|
def check_eula_acceptance?
|
|
if ENV["HOMEBREW_ACCEPT_EULA"] != "y" && ENV["HOMEBREW_ACCEPT_EULA"] != "Y"
|
|
puts "The license terms for this product can be downloaded from"
|
|
puts "https://aka.ms/odbc18eula and found in"
|
|
puts "#{prefix}/share/doc/msodbcsql18/LICENSE.txt . By entering 'YES',"
|
|
puts "you indicate that you accept the license terms."
|
|
puts ""
|
|
loop do
|
|
puts "Do you accept the license terms? (Enter YES or NO)"
|
|
accept_eula = STDIN.gets.chomp
|
|
if accept_eula
|
|
if accept_eula.casecmp("YES").zero?
|
|
break
|
|
elsif accept_eula.casecmp("NO").zero?
|
|
puts "Installation terminated: License terms not accepted."
|
|
return false
|
|
else
|
|
puts "Please enter YES or NO"
|
|
end
|
|
else
|
|
puts "Installation terminated: Could not prompt for license acceptance."
|
|
puts "If you are performing an unattended installation, you may set"
|
|
puts "HOMEBREW_ACCEPT_EULA to Y to indicate your acceptance of the license terms."
|
|
return false
|
|
end
|
|
end
|
|
end
|
|
true
|
|
end
|
|
|
|
def install
|
|
return false unless check_eula_acceptance?
|
|
|
|
chmod 0444, "lib/libmsodbcsql.18.dylib"
|
|
chmod 0444, "share/msodbcsql18/resources/en_US/msodbcsqlr18.rll"
|
|
chmod 0644, "include/msodbcsql18/msodbcsql.h"
|
|
chmod 0644, "odbcinst.ini"
|
|
chmod 0644, "share/doc/msodbcsql18/LICENSE.txt"
|
|
chmod 0644, "share/doc/msodbcsql18/RELEASE_NOTES"
|
|
|
|
cp_r ".", prefix.to_s
|
|
|
|
if build.with? "registration"
|
|
system "odbcinst", "-u", "-d", "-n", "\"ODBC Driver 18 for SQL Server\""
|
|
system "odbcinst", "-i", "-d", "-f", "./odbcinst.ini"
|
|
end
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
If you installed this formula with the registration option (default), you'll
|
|
need to manually remove [ODBC Driver 18 for SQL Server] section from
|
|
odbcinst.ini after the formula is uninstalled. This can be done by executing
|
|
the following command:
|
|
odbcinst -u -d -n "ODBC Driver 18 for SQL Server"
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
if build.with? "registration"
|
|
out = shell_output("#{Formula["unixodbc"].opt_bin}/odbcinst -q -d")
|
|
assert_match "ODBC Driver 18 for SQL Server", out
|
|
end
|
|
end
|
|
end
|