2013-11-27 12:06:57 +00:00
|
|
|
class Dirt < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Experimental sample playback"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/yaxu/Dirt"
|
|
|
|
url "https://github.com/yaxu/Dirt/archive/1.0.tar.gz"
|
|
|
|
sha256 "c7c51ea3f279c048e84d988978455f075fd8ae063b2ad7378fc9b8369218f8fb"
|
2015-10-05 13:16:20 +00:00
|
|
|
head "https://github.com/yaxu/Dirt.git"
|
2013-11-27 12:06:57 +00:00
|
|
|
|
2015-10-09 19:34:56 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha256 "4433c2f444c42144017d8c0bd0fff5726a8fcdef2a7127b3a1da20e601efd0aa" => :el_capitan
|
|
|
|
sha256 "7a613357e497ebf96d96cbb18fd4a29a6e7a3e348296f4286b4a0ef62ec45ca2" => :yosemite
|
|
|
|
sha256 "21e3d01b0d6995f1e3e6fbd1fb8e249920db144c5f6ddd50ad53fa3750d241f4" => :mavericks
|
|
|
|
end
|
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
depends_on "jack"
|
|
|
|
depends_on "liblo"
|
2013-11-27 12:06:57 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make", "DESTDIR=#{prefix}", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/dirt", "-h"
|
|
|
|
end
|
|
|
|
end
|