diff options
| author | Steven Kallstrom | 2010-11-14 12:28:03 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2010-11-19 07:09:51 -0800 |
| commit | 59a473becf4f7fccfb8c05d15f6cb67813b25ff1 (patch) | |
| tree | bd7ab527f03cd82f1a29e0520b96640c2e3971b1 | |
| parent | b2aff3b268ee5dcbea40f5f7f49807aad8ad33bd (diff) | |
| download | homebrew-59a473becf4f7fccfb8c05d15f6cb67813b25ff1.tar.bz2 | |
New Formula: shntool
shntool is a utility to view and modify WAVE data and properties.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/shntool.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/shntool.rb b/Library/Formula/shntool.rb new file mode 100644 index 000000000..afd6efa3b --- /dev/null +++ b/Library/Formula/shntool.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Shntool <Formula + url 'http://etree.org/shnutils/shntool/dist/src/shntool-3.0.10.tar.gz' + homepage 'http://etree.org/shnutils/shntool/' + md5 '5d41f8f42c3c15e3145a7a43539c3eae' + + def install + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
