diff options
| author | Ben Hagen | 2014-05-16 23:54:57 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-17 10:05:05 -0700 |
| commit | 98afed3bc4be0e7cc927048a64d068c790f32f95 (patch) | |
| tree | fc17aca9f85d1405841599400c60cd1b7f20436d /Library/Formula | |
| parent | cc794917d89d9422d60d5d39f1cbcf1e827f7717 (diff) | |
| download | homebrew-98afed3bc4be0e7cc927048a64d068c790f32f95.tar.bz2 | |
ltc-tools 0.6.4
Closes #29328.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ltc-tools.rb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/ltc-tools.rb b/Library/Formula/ltc-tools.rb new file mode 100644 index 000000000..04fe077e5 --- /dev/null +++ b/Library/Formula/ltc-tools.rb @@ -0,0 +1,23 @@ +require "formula" + +class LtcTools < Formula + homepage "https://github.com/x42/ltc-tools" + url "https://github.com/x42/ltc-tools/archive/v0.6.4.tar.gz" + sha1 "b126223996b06ac3dd900b322e3ccda9267bcbb3" + head "https://github.com/x42/ltc-tools.git" + + depends_on "pkg-config" => :build + depends_on "help2man" => :build + depends_on "libltc" + depends_on "libsndfile" + depends_on "jack" + + def install + system "make", "install", "PREFIX=#{prefix}" + end + + test do + system bin/"ltcgen", "test.wav" + system bin/"ltcdump", "test.wav" + end +end |
