blob: c3f52cc91c7d974db2ad076197b4b77ce1f69a12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class Lyricli < Formula
desc "A command line tool to show the lyrics of your current song."
homepage "https://unlimited.pizza/lyricli.html"
url "https://unlimited.pizza/files/lyricli/lrc-2.0.1-universal.tar.gz"
license "Apache-2.0"
sha256 "105313ed4ca9dc90a6cadbcfd3c0ca578c99678972d3085d87f3022d99c436ea"
head "https://git.sr.ht/~rbdr/lyricli"
def install
bin.install "lrc"
end
test do
assert_match "2.0.1", shell_output("#{bin}/lrc --version")
end
end
|