0435527fcd
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>
13 lines
395 B
Ruby
13 lines
395 B
Ruby
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
|