9ec0b94132
Closes #32703. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
17 lines
450 B
Ruby
17 lines
450 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.0.3.tar.gz"
|
|
sha256 "d3e51719fb039ad70a16b78994ded68eaa991b4328df0f5d8b16a6e87393cae3"
|
|
head "https://github.com/hnarayanan/shpotify.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "spotify"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/spotify"
|
|
end
|
|
end
|