Skip to content

Commit c1d6c0a

Browse files
committed
palemoon 33.7.1
Add homebrew cask for Pale Moon (https://www.palemoon.org/). Currently for ARM macOS only as the Intel version is unsigned (homebrew >=4.3.0 requires signed casks)
1 parent a42547f commit c1d6c0a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

Casks/p/palemoon.rb

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
cask "palemoon" do
2+
version "33.7.1"
3+
sha256 arm: "d6e6d71f94d87db86d1dfb4ea749587a377652ecb3d3e2b646ed61829c7ab564"
4+
5+
url "https://rm-us.palemoon.org/release/palemoon-#{version}.arm64.dmg"
6+
name "Pale Moon"
7+
desc "Open Source, Goanna-based web browser"
8+
homepage "https://www.palemoon.org/"
9+
10+
livecheck do
11+
url "https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases.rss"
12+
strategy :page_match
13+
regex(%r{<title>Pale Moon (\d+\.\d+\.\d+)</title>}i)
14+
end
15+
16+
depends_on macos: ">= :big_sur",
17+
arch: :arm64
18+
19+
app "Pale Moon.app"
20+
21+
zap trash: [
22+
"~/Library/Application Support/Pale Moon",
23+
"~/Library/Caches/Pale Moon",
24+
"~/Library/Preferences/org.mozilla.pale moon.plist",
25+
"~/Library/Saved Application State/org.mozilla.white star.savedState",
26+
]
27+
end

0 commit comments

Comments
 (0)