blob: e5cf430761987becd03417f13cdc369f0d07c83b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class Page < Formula
desc "A static website generator for exactly 1 use case."
homepage "https://git.sr.ht/~rbdr/page"
url "https://git.sr.ht/~rbdr/page", tag: "1.0.0"
license "Apache-2.0"
head "https://git.sr.ht/~rbdr/page", branch: "main"
version "1.0.0"
depends_on "rust" => :build
def install
system "cargo", "install", *std_cargo_args
end
test do
(testpath/"_layout.html").write("{{ content }}")
system "#{bin}/page"
end
end
|