homebrew-core/Formula/mpdviz.rb
ryanrms c7b5dc336c mpdviz 0.4.3
mpdviz is a terminal visualizer for the music player daemon (mpd).

Closes Homebrew/homebrew#28628.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2014-04-23 23:14:25 -07:00

21 lines
558 B
Ruby

require "formula"
class Mpdviz < Formula
homepage "https://github.com/neeee/mpdviz"
url "http://github.com/neeee/mpdviz/archive/0.4.3.tar.gz"
sha1 "7923a818155c9fc413e483dcb1b3964ab00e5ded"
depends_on "pkg-config" => :build
depends_on "go" => :build
depends_on "fftw"
def install
ENV["GOPATH"] = buildpath
system "go", "get", "github.com/neeee/go-fftw"
system "go", "get", "github.com/neeee/pflag"
system "go", "get", "github.com/neeee/termbox-go"
system "go", "build", "-o", "mpdviz"
bin.install "mpdviz"
end
end