Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

texstudio: support apple silicon #169292

Merged
merged 4 commits into from Apr 15, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 8 additions & 3 deletions Casks/t/texstudio.rb
@@ -1,16 +1,21 @@
cask "texstudio" do
arch arm: "-m1"
ext = on_arch_conditional arm: "zip", intel: "dmg"
app_suffix = on_arch_conditional arm: "-#{version}-osx-m1", intel: ""

version "4.7.3"
bevanjkay marked this conversation as resolved.
Show resolved Hide resolved
sha256 "ce1cd5ab82d907165e232dfc5ccf8329f086e375f4936c6b9da9b0091ddd0674"
sha256 arm: "314da45d6071c4e18643282b25f6df7114bd42964d85b63526ffbfa048d993e7",
intel: "ce1cd5ab82d907165e232dfc5ccf8329f086e375f4936c6b9da9b0091ddd0674"

url "https://github.com/texstudio-org/texstudio/releases/download/#{version}/texstudio-#{version}-osx.dmg",
url "https://github.com/texstudio-org/texstudio/releases/download/#{version}/texstudio-#{version}-osx#{arch}.#{ext}",
verified: "github.com/texstudio-org/texstudio/"
name "TeXstudio"
desc "LaTeX editor"
homepage "https://texstudio.org/"

depends_on macos: ">= :big_sur"

app "texstudio.app"
app "texstudio#{app_suffix}.app"

zap trash: [
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/texstudio.sfl*",
Expand Down