2014-05-21 15:17:45 +00:00
|
|
|
require "formula"
|
2010-07-25 16:09:49 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cmus < Formula
|
2014-05-22 11:36:25 +00:00
|
|
|
homepage "https://cmus.github.io/"
|
|
|
|
head "https://github.com/cmus/cmus.git"
|
2014-09-22 01:23:59 +00:00
|
|
|
url "https://github.com/cmus/cmus/archive/v2.6.0.tar.gz"
|
|
|
|
sha1 "aba00eb75335532c0413f7c819c2e2d12fcd4314"
|
2014-09-29 22:14:34 +00:00
|
|
|
revision 1
|
2012-04-19 02:37:43 +00:00
|
|
|
|
2014-08-19 09:40:54 +00:00
|
|
|
bottle do
|
2014-10-06 20:17:40 +00:00
|
|
|
sha1 "da0f9ffb5fc18e25f5f3d9dafebdc24c5121a89e" => :mavericks
|
|
|
|
sha1 "c59670990bc5055fae97c62732e6c4162b78e64c" => :mountain_lion
|
|
|
|
sha1 "4bba9a8ce200e9ab6348bcc87f459ad328d5862c" => :lion
|
2014-08-19 09:40:54 +00:00
|
|
|
end
|
|
|
|
|
2014-05-21 15:17:45 +00:00
|
|
|
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"
|
|
|
|
depends_on "libcue"
|
|
|
|
depends_on "ffmpeg" => :optional
|
2010-07-25 16:09:49 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "prefix=#{prefix}", "mandir=#{man}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|