aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Kallstrom2010-11-14 12:28:03 -0600
committerAdam Vandenberg2010-11-19 07:09:51 -0800
commit59a473becf4f7fccfb8c05d15f6cb67813b25ff1 (patch)
treebd7ab527f03cd82f1a29e0520b96640c2e3971b1
parentb2aff3b268ee5dcbea40f5f7f49807aad8ad33bd (diff)
downloadhomebrew-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.rb12
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