blob: 919802830c35fd900e5d81865a49e44e36b6fb73 (
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.0-universal.tar.gz"
license "Apache-2.0"
sha256 "d6cc3879d3daafddf728158d8ffbe79cae7a1bad4bf5a72e57976a5ceb179fd7"
head "https://git.sr.ht/~rbdr/lyricli"
def install
bin.install "lrc"
end
test do
assert_match "2.0.0", shell_output("#{bin}/lrc --version")
end
end
|