1fd6eb993c
Fixes Homebrew/homebrew#37501. Closes Homebrew/homebrew#37505. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
class Moc < Formula
|
|
homepage 'http://moc.daper.net'
|
|
url "http://ftp.daper.net/pub/soft/moc/stable/moc-2.5.0.tar.bz2"
|
|
sha1 "a02c10075541995771dbdccb7f2d0ecd19d70b81"
|
|
|
|
bottle do
|
|
sha1 "1a08c15f965d74614f142ee8ec2bea75b5d999cd" => :yosemite
|
|
sha1 "7168fc76526f705ecc4ee766e2f6d7a37e271b46" => :mavericks
|
|
sha1 "876c8a6cbf642db773e6c65794e7632422e9cafa" => :mountain_lion
|
|
end
|
|
|
|
head do
|
|
url "svn://daper.net/moc/trunk"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "gettext" => :build
|
|
end
|
|
|
|
option 'with-ncurses', 'Build with wide character support.'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on "libtool" => :run
|
|
depends_on 'berkeley-db'
|
|
depends_on 'jack'
|
|
depends_on 'ffmpeg' => :recommended
|
|
depends_on 'mad' => :optional
|
|
depends_on 'flac' => :optional
|
|
depends_on 'speex' => :optional
|
|
depends_on 'musepack' => :optional
|
|
depends_on 'libsndfile' => :optional
|
|
depends_on 'wavpack' => :optional
|
|
depends_on 'faad2' => :optional
|
|
depends_on 'timidity' => :optional
|
|
depends_on 'libmagic' => :optional
|
|
depends_on 'homebrew/dupes/ncurses' => :optional
|
|
|
|
def install
|
|
system "autoreconf", "-fvi" if build.head?
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
You must start the jack daemon prior to running mocp.
|
|
If you need wide-character support in the player, for example
|
|
with Chinese characters, you can install using
|
|
--with-ncurses
|
|
EOS
|
|
end
|
|
end
|