4874090ab2
Closes Homebrew/homebrew#8916. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
24 lines
544 B
Ruby
24 lines
544 B
Ruby
require 'formula'
|
|
|
|
class Cmus < Formula
|
|
url 'http://downloads.sourceforge.net/cmus/cmus-v2.4.3.tar.bz2'
|
|
homepage 'http://cmus.sourceforge.net/'
|
|
md5 '75452cf007637214c4ab5444e076114b'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libao'
|
|
depends_on 'mad'
|
|
depends_on 'libogg'
|
|
depends_on 'libvorbis'
|
|
depends_on 'faad2'
|
|
depends_on 'flac'
|
|
depends_on 'mp4v2'
|
|
|
|
skip_clean 'bin/cmus'
|
|
skip_clean 'bin/cmus-remote'
|
|
|
|
def install
|
|
system "./configure", "prefix=#{prefix}", "mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|