Files
homebrew-cask/Casks/f/fxfactory.rb
2023-12-01 13:35:25 -07:00

39 lines
1.3 KiB
Ruby

cask "fxfactory" do
version "8.0.11,7685"
sha256 "a7d8528ac0fa49f71f223bf400f574853be83e2eba913d3253517aacfa45f738"
url "https://fxfactory.s3.amazonaws.com/noiseindustries/fxfactory/FxFactory-#{version.csv.first}-#{version.csv.second}.zip",
verified: "fxfactory.s3.amazonaws.com/noiseindustries/"
name "FxFactory"
desc "Browse, install and purchase effects and plugins from a huge catalog"
homepage "https://fxfactory.com/"
livecheck do
url "https://fxfactory.com/download/"
regex(/FxFactory[._-]v?(\d+(?:\.\d+)+)[._-](\d+).zip/i)
strategy :page_match do |page, regex|
match = page.match(regex)
next if match.blank?
"#{match[1]},#{match[2]}"
end
end
pkg "Install FxFactory #{version.csv.first}.pkg"
uninstall pkgutil: "com.fxfactory.pkg",
quit: "com.fxfactory.Fxfactory",
launchctl: "com.fxfactory.FxFactory.helper",
delete: [
"/Library/Application Support/FxFactory",
"/Library/LaunchDaemons/com.fxfactory.FxFactory.helper.plist",
"/Library/PrivilegedHelperTools/com.fxfactory.FxFactory.helper",
]
zap trash: [
"~/Library/Application Scripts/com.fxfactory.FxFactoryService.pluginkit",
"~/Library/Preferences/com.fxfactory.FxFactory.plist",
"~/Movies/Motion Templates.localized",
]
end