diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-11 23:27:35 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-04-11 23:27:35 +0200 |
| commit | 74eb1457ef5a84b502943024bd2813019c644159 (patch) | |
| tree | e466daaa70c998765358e90c58109291ce84a5f9 /Formula/lyricli-2.0.1.rb | |
| parent | abc98700d56efeee087d82f876da91fe3af8b1ab (diff) | |
Add 2.0.1
Diffstat (limited to 'Formula/lyricli-2.0.1.rb')
| -rw-r--r-- | Formula/lyricli-2.0.1.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Formula/lyricli-2.0.1.rb b/Formula/lyricli-2.0.1.rb new file mode 100644 index 0000000..37f2a95 --- /dev/null +++ b/Formula/lyricli-2.0.1.rb @@ -0,0 +1,15 @@ +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" + sha256 "350a923894651bd803a358a4fdb18dedb06000e1ace3e7ddad14b54a954f2f47" + 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 |