29dc6545de
FAAC is an Advanced Audio Coder (MPEG2-AAC, MPEG4-AAC). The goal of FAAC is to explore the possibilities of AAC and exceed the quality of the currently best MP3 encoders.
12 lines
371 B
Ruby
12 lines
371 B
Ruby
require 'brewkit'
|
|
|
|
class Faac <Formula
|
|
url 'http://surfnet.dl.sourceforge.net/project/faac/faac-src/faac-1.28/faac-1.28.tar.gz'
|
|
md5 '80763728d392c7d789cde25614c878f6'
|
|
homepage 'http://www.audiocoding.com/faac.html'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|