aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mpdviz.rb21
1 files changed, 21 insertions, 0 deletions
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