From e9503968c79696c400a9c9fdc697d13175cc6905 Mon Sep 17 00:00:00 2001 From: Ralph Angenendt Date: Sun, 15 Aug 2010 18:29:18 +0200 Subject: [PATCH] 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 --- Formula/abcde.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Formula/abcde.rb diff --git a/Formula/abcde.rb b/Formula/abcde.rb new file mode 100644 index 00000000000..d35a9f586dd --- /dev/null +++ b/Formula/abcde.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Abcde :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