New formula: cmus

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Matthew Mongeau 2010-07-25 12:09:49 -04:00 committed by Adam Vandenberg
parent 3b25ea22d5
commit ea98009103
1 changed files with 23 additions and 0 deletions

23
Formula/cmus.rb Normal file
View File

@ -0,0 +1,23 @@
require 'formula'
class Cmus <Formula
url 'https://sourceforge.net/projects/cmus/files/cmus-v2.3.3.tar.bz2/download'
homepage 'http://cmus.sourceforge.net/'
md5 '220e875e4210a6b54882114ef7094a79'
version '2.3.3'
depends_on 'libao'
depends_on 'mad'
depends_on 'libogg'
depends_on 'libvorbis'
depends_on 'faad2'
depends_on 'flac'
skip_clean 'bin/cmus'
skip_clean 'bin/cmus-remote'
def install
system "./configure", "prefix=#{prefix}", "mandir=#{man}"
system "make install"
end
end