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