aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cmus.rb
blob: c2d760e498d27c219343b7cd862a18ffb804c814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require "formula"

class Cmus < Formula
  homepage "https://cmus.github.io/"
  head "https://github.com/cmus/cmus.git"

  stable do
    url "https://github.com/cmus/cmus/archive/v2.5.1.tar.gz"
    sha1 "fd6c63c7cb405e4b4fea6a737074c454f602c202"
  end

  devel do
    url "https://github.com/cmus/cmus/archive/v2.6.0-rc0.tar.gz"
    version "2.6.0-rc0"
    sha1 "08f7f038d4fa14fe0e1b7dea5df137ada11401f3"
  end

  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