aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/dirt.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/dirt.rb b/Library/Formula/dirt.rb
new file mode 100644
index 000000000..a1d2d4750
--- /dev/null
+++ b/Library/Formula/dirt.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class Dirt < Formula
+ homepage 'https://github.com/yaxu/Dirt'
+ head 'https://github.com/yaxu/Dirt.git'
+ url 'https://github.com/yaxu/Dirt/archive/1.0.tar.gz'
+ sha1 '853d6a80bf77ebceabd25411ea01568d9acb3362'
+
+ depends_on 'jack'
+ depends_on 'liblo'
+
+ def install
+ system "make", "DESTDIR=#{prefix}", "install"
+ end
+
+ test do
+ system "#{bin}/dirt", "-h"
+ end
+end