From 482d9ee58aeaaea22a2a5490df4c45373dce1c06 Mon Sep 17 00:00:00 2001 From: ryanrms Date: Tue, 22 Apr 2014 20:35:04 -0600 Subject: mpdviz 0.4.3 mpdviz is a terminal visualizer for the music player daemon (mpd). Closes #28628. Signed-off-by: Misty De Meo --- Library/Formula/mpdviz.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Library/Formula/mpdviz.rb (limited to 'Library/Formula') diff --git a/Library/Formula/mpdviz.rb b/Library/Formula/mpdviz.rb new file mode 100644 index 000000000..1ae934a8e --- /dev/null +++ b/Library/Formula/mpdviz.rb @@ -0,0 +1,21 @@ +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 -- cgit v1.2.3