homebrew-core/Formula/cmus.rb

32 lines
813 B
Ruby
Raw Normal View History

2014-05-21 15:17:45 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Cmus < Formula
homepage "https://cmus.github.io/"
head "https://github.com/cmus/cmus.git"
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
bottle do
2014-10-06 20:17:40 +00:00
sha1 "da0f9ffb5fc18e25f5f3d9dafebdc24c5121a89e" => :mavericks
sha1 "c59670990bc5055fae97c62732e6c4162b78e64c" => :mountain_lion
sha1 "4bba9a8ce200e9ab6348bcc87f459ad328d5862c" => :lion
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
def install
system "./configure", "prefix=#{prefix}", "mandir=#{man}"
system "make install"
end
end