homebrew-cask/Casks/macfusion.rb

24 lines
779 B
Ruby

cask 'macfusion' do
version '2.0.4'
sha256 '6693241fd54d686013864adb86a6ea7eef6c1291546573b628b3ddf7889ef71c'
url "http://macfusionapp.org/releases/Macfusion_#{version}.zip"
appcast 'http://macfusionapp.org/appcast.xml',
checkpoint: '6035a7a17249b0f1106400fff4e81df9815f99eca3ef1e5b4a98d54fa97bfad3'
name 'Macfusion'
homepage 'http://macfusionapp.org/'
license :apache
depends_on cask: 'sshfs'
app 'Macfusion.app'
# fix broken bundled sshfs, see https://github.com/osxfuse/osxfuse/wiki/SSHFS#macfusion
postflight do
Dir.chdir("#{appdir}/Macfusion.app/Contents/PlugIns/sshfs.mfplugin/Contents/Resources") do
File.rename('sshfs-static', 'sshfs-static.orig')
File.symlink('/usr/local/bin/sshfs', 'sshfs-static')
end
end
end