F-Script
F-Script copied to clipboard
Submit to Homebrew Caskroom
Maybe there is no need to make .pgk https://github.com/caskroom/homebrew-cask/issues/4188 need to investigate more..
Minimal cask:
cask :v1 => 'f-script' do
version '2.3'
sha256 '718de3b1f4b45391f543ca73349097b02d2c8725b3b943691183ccb093a8a195'
url 'https://github.com/Kentzo/F-Script/releases/download/v2.3/10.10.zip'
name 'F-Script'
homepage 'http://www.fscript.org'
app 'F-Script.app'
end
There is no inject scripts in distribution, otherwise we could add binary 'fscript-inject'
and service 'Inject_FScript.workflow'
to cask
Also framework will be installed to /opt/homebrew-cask/Caskroom/f-script/2.3/FScript.framework
Is there dependency on location /Library/Frameworks/FScript.framework
or it is hardcoded only in inject scripts ?
There also option to artifact 'FScript.framework', :target => '/Library/Frameworks/FScript.framework'
in that case we will be need to run install with sudo sudo brew cask install f-script
but no need to fix scripts.
I'm not aware of any dependency injections.
The Injection service is currently distributed via GitHub releases. It's possible to make it part of the repo though.
Could you prepare fully working cask that installs both fscript and the injection service?