]> git.r.bdr.sh - rbdr/homebrew-apps/blame - Formula/blog-7.0.0.rb
Add captura
[rbdr/homebrew-apps] / Formula / blog-7.0.0.rb
CommitLineData
1f27122e
RBR
1class Blog < Formula
2 desc "An almost ephemeral blog with a gopher / gemini archive."
3 homepage "https://r.bdr.sh/blog.html"
4 url "https://git.sr.ht/~rbdr/blog", tag: "7.0.0"
5 license "AGPL-3.0-or-later"
6 head "https://git.sr.ht/~rbdr/blog", branch: "main"
7 version "7.0.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 system "#{bin}/blog version"
17 end
18end