74c83fa9f6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
460 B
Ruby
14 lines
460 B
Ruby
require 'formula'
|
|
|
|
class Faad2 < Formula
|
|
homepage 'http://www.audiocoding.com/faad2.html'
|
|
url 'https://downloads.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7.tar.bz2'
|
|
sha1 'b0e80481d27ae9faf9e46c8c8dfb617a0adb91b5'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
man1.install man+'manm/faad.man' => 'faad.1'
|
|
end
|
|
end
|