homebrew-core/Formula/shntool.rb
Steven Kallstrom 7bed6969e6 New Formula: shntool
shntool is a utility to view and modify WAVE data and properties.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-19 07:09:51 -08:00

12 lines
335 B
Ruby

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