blob: 7bb18e881a1447d946b28b6ca513442bbef42893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class Page < Formula
desc "A static website generator for exactly 1 use case."
homepage "https://r.bdr.sh/page.html"
if Hardware::CPU.arm?
url "https://build.r.bdr.sh/page/page-aarch64-apple-darwin-1.4.1.tar.gz"
sha256 "6b11c93a4863d90d0eff521c568d3436721c68ee1bf181ca9d23077af0170511"
else
url "https://build.r.bdr.sh/page/page-x86_64-apple-darwin-1.4.1.tar.gz"
sha256 "aa8f187820d39ea2b0d90f181f184007e6d1bb1070df8f6110ec4f5b3e5e80c7"
end
license "AGPL-3.0-or-later"
head "https://git.sr.ht/~rbdr/page", branch: "main"
version "1.4.1"
def install
bin.install "page"
end
test do
(testpath/"_layout.html").write("{{ content }}")
system "#{bin}/page"
end
end
|