aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sox.rb
diff options
context:
space:
mode:
authorPete Yandell2010-01-29 03:57:05 +1100
committerDavid Höppner2010-01-31 16:58:14 +0100
commitc73ebff94bcd7d9c9a3ae42a0480dad9d9f5d890 (patch)
treecec2c1c9c3f83213913e450a9697c684f6f40399 /Library/Formula/sox.rb
parent03b8ad85d829d99b40c48abfdc197ad81a7a7ac9 (diff)
downloadhomebrew-c73ebff94bcd7d9c9a3ae42a0480dad9d9f5d890.tar.bz2
SoX 14.3.0
SoX is a cross-platform (Windows, Linux, MacOS X, etc.) command line utility that can convert various formats of computer audio files in to other formats. It can also apply various effects to these sound files, and, as an added bonus, SoX can play and record audio files on most platforms. http://sox.sourceforge.net/ Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library/Formula/sox.rb')
-rw-r--r--Library/Formula/sox.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/sox.rb b/Library/Formula/sox.rb
new file mode 100644
index 000000000..227f4055f
--- /dev/null
+++ b/Library/Formula/sox.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Sox <Formula
+ url 'http://sourceforge.net/projects/sox/files/sox/14.3.0/sox-14.3.0.tar.gz/download'
+ version '14.3.0'
+ homepage 'http://sox.sourceforge.net/'
+ md5 '8e3509804e6227273ef84092e1a2fea7'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-gomp"
+ system "make install"
+ end
+end