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:
parent
9be987edd5
commit
e9503968c7
1 changed files with 19 additions and 0 deletions
19
Formula/abcde.rb
Normal file
19
Formula/abcde.rb
Normal 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
|
Loading…
Reference in a new issue