abcde - a commandline Audio CD ripper

This is the first push for abcde, which is an Audio CD ripper for
the commandline. Rips into several formats, like mp3, flac, aac.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Ralph Angenendt 2010-08-15 18:29:18 +02:00 committed by Adam Vandenberg
parent 9be987edd5
commit e9503968c7

19
Formula/abcde.rb Normal file
View file

@ -0,0 +1,19 @@
require 'formula'
class Abcde <Formula
url 'http://abcde.googlecode.com/files/abcde-2.4.2.tar.gz'
homepage 'https://code.google.com/p/abcde/'
md5 '2147527c245ed70af7b218b642201669'
depends_on 'lame' => :optional
depends_on 'vorbis-tools' => :optional
depends_on 'flac' => :optional
depends_on 'cd-discid'
depends_on 'id3v2'
depends_on 'cdrtools'
def install
inreplace 'Makefile', '-o 0', ''
system "export prefix=#{prefix};export DESTDIR=$prefix;make -e install"
end
end