7339c5e578
Closes #39417. Signed-off-by: Chongyu Zhu <i@lembacon.com>
17 lines
448 B
Ruby
17 lines
448 B
Ruby
class Shpotify < Formula
|
|
desc "Command-line interface for Spotify on a Mac"
|
|
homepage "https://harishnarayanan.org/projects/shpotify/"
|
|
url "https://github.com/hnarayanan/shpotify/archive/2.1.tar.gz"
|
|
sha256 "b41d8798687be250d0306ac0c5a79420fa46619c5954286711a5d63c86a6c071"
|
|
head "https://github.com/hnarayanan/shpotify.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "spotify"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/spotify"
|
|
end
|
|
end
|