Files
2023-11-05 14:44:20 +08:00

52 lines
1.7 KiB
Ruby

cask "j" do
version "9.4"
sha256 "0653e6eef7d5ee295b1c8d06118b62ddbcbfe753263f172fb7a608832b3eda87"
url "https://www.jsoftware.com/download/j#{version}/install/j#{version}_mac64.zip"
name "J"
desc "Programming language for mathematical, statistical and logical analysis of data"
homepage "https://www.jsoftware.com/"
apps = %w[jbrk jcon jqt]
apps.each do |a|
app "j#{version}/#{a}.app"
end
livecheck do
url "https://code.jsoftware.com/wiki/System/Installation"
regex(/Jv?(\d+(?:\.\d+)+)\srelease/i)
end
installer script: "j#{version}/macos-fix.command"
installer script: {
executable: "j#{version}/bin/jconsole",
args: ["-js", "load 'pacman'", "'install' jpkg '*'", "exit 0"],
}
["jcon", "jconsole"].each do |b|
binary "j#{version}/bin/jconsole", target: b
end
commands = ["jbrk", "jhs", "jqt"]
commands.each do |b|
binary "j#{version}/bin/#{b}.command", target: b
end
postflight do
# Use `readlink` to get full path of symlinked commands.
commands.each do |c|
command = "#{staged_path}/j#{version}/bin/#{c}.command"
File.write command, File.read(command).gsub("$0", '$(/usr/bin/readlink "$0" || /bin/echo "$0")')
end
# Fix relative paths inside App bundles.
apps.each do |a|
apprun = "#{appdir}/#{a}.app/Contents/MacOS/apprun"
File.write apprun, File.read(apprun).gsub(%r{`dirname "\$0"`.*?/bin}, "#{staged_path}/j#{version}/bin")
end
end
# Not actually necessary, since it would be deleted anyway.
# It is present to make clear an uninstall was not forgotten and that for this cask it is indeed this simple.
uninstall delete: "#{staged_path}/#{token}"
end