Skip to content

Commit

Permalink
Add binary link to command line
Browse files Browse the repository at this point in the history
Homebrew offers the option of specifying a binary that will be linked
to the homebrew directory during installation.

Given the recent introduction of a cli interface in Pharo Launcher 3.2
it makes sense to create a link to the executable.
  • Loading branch information
dalsat committed Dec 10, 2024
1 parent 90e88ab commit 7dfd359
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Casks/pharo-launcher.rb
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
cask "pharo-launcher" do
arch arm: "arm64",
arch arm: "arm64",
intel: "x64"

version "3.2"
sha256 arm: "d5fa272df66498880315e3ce791dd178ab6f4078aa0fd95a9ee8f2758d5deb59",
sha256 arm: "d5fa272df66498880315e3ce791dd178ab6f4078aa0fd95a9ee8f2758d5deb59",
intel: "da6a2c5a3a237fcfc085ce664795e6faf586cf25c2b95aee6f3160a0a4ae3786"

url "https://files.pharo.org/pharo-launcher/#{version}/PharoLauncher-#{version}-#{arch}.dmg"
name "Pharo Launcher"
desc "The fastest way to get a working Pharo environment."
desc "Fastest way to get a working Pharo environment"
homepage "http://pharo.org/download"

app "PharoLauncher.app"
binary "#{appdir}/PharoLauncher.app/Contents/Resources/pharo-launcher"
end

0 comments on commit 7dfd359

Please sign in to comment.