diff options
| author | Ralph Angenendt | 2010-08-15 18:29:18 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-15 11:39:15 -0700 |
| commit | f16575cd65526f909c0ce466d90a1fc96c468a9b (patch) | |
| tree | 5d8406ca9ac29e2ff751d4feef754e9a20ddb4de /Library/Formula | |
| parent | 856b923ff627426db804a30a5f5dd2d400512a54 (diff) | |
| download | homebrew-f16575cd65526f909c0ce466d90a1fc96c468a9b.tar.bz2 | |
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>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/abcde.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/abcde.rb b/Library/Formula/abcde.rb new file mode 100644 index 000000000..d35a9f586 --- /dev/null +++ b/Library/Formula/abcde.rb @@ -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 |
