]>
Commit | Line | Data |
---|---|---|
8c0224ed RBR |
1 | class Page < Formula |
2 | desc "A static website generator for exactly 1 use case." | |
3 | homepage "https://github.com/BurntSushi/ripgrep" | |
4 | url "https://git.sr.ht/~rbdr/page" | |
5 | sha256 "0fb17aaf285b3eee8ddab17b833af1e190d73de317ff9648751ab0660d763ed2" | |
6 | license "Apache-2.0" | |
7 | head "https://git.sr.ht/~rbdr/page", branch: "main" | |
8 | ||
9 | livecheck do | |
10 | url :stable | |
11 | strategy :github_latest | |
12 | end | |
13 | ||
14 | depends_on "rust" => :build | |
15 | ||
16 | def install | |
17 | system "cargo", "install", *std_cargo_args | |
18 | end | |
19 | ||
20 | test do | |
21 | (testpath/"_layout.html").write("{{ content }}") | |
22 | system "#{bin}/page" | |
23 | end | |
24 | end |