Skip to content

Commit de859c7

Browse files
committed
feat: add Homebrew cask definition for AirSync 4.0.0
1 parent 3b73238 commit de859c7

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

‎airsync.rb‎

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
cask "airsync" do
2+
version "4.0.0"
3+
sha256 "c502e935191774c6980ab64b6f54a4f88774a1905fdcfc4f1749b87a145085c0"
4+
5+
url "https://github.com/sameerasw/airsync-mac/releases/download/v#{version}/AirSync.dmg"
6+
name "AirSync"
7+
desc "Continuity with your Android. Sync notifications, mirror screen and more"
8+
homepage "https://github.com/sameerasw/airsync-mac"
9+
10+
livecheck do
11+
url :url
12+
strategy :github_latest
13+
end
14+
15+
depends_on macos: :sonoma
16+
depends_on cask: "android-platform-tools"
17+
depends_on formula: [
18+
"media-control",
19+
"scrcpy",
20+
]
21+
22+
app "AirSync.app"
23+
24+
zap trash: [
25+
"~/Library/Application Support/AirSync",
26+
"~/Library/Caches/com.sameerasw.airsync-mac",
27+
"~/Library/Preferences/com.sameerasw.airsync-mac.plist",
28+
"~/Library/Saved Application State/com.sameerasw.airsync-mac.savedState",
29+
]
30+
end

0 commit comments

Comments
 (0)