blob: 2d3b865752f39180a5e816759832378360eef432 (
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.2.tar.gz"
sha256 "162e684b8b724dd89ed5d8c8331d46809e5a8dc0da9688acd1aa9dcb389b1e4c"
else
url "https://build.r.bdr.sh/page/page-x86_64-apple-darwin-1.4.2.tar.gz"
sha256 "90171189690634b32e8b3dcdaaf9618c8d82740502f48dd682768fe4392cb310"
end
license "AGPL-3.0-or-later"
head "https://git.sr.ht/~rbdr/page", branch: "main"
version "1.4.2"
def install
bin.install "page"
end
test do
(testpath/"_layout.html").write("{{ content }}")
system "#{bin}/page"
end
end
|