cmus 2.5.1, 2.6.0-rc0
This commit is contained in:
parent
22b71f7395
commit
07a9a26746
1 changed files with 23 additions and 15 deletions
|
@ -1,22 +1,30 @@
|
|||
require 'formula'
|
||||
require "formula"
|
||||
|
||||
class Cmus < Formula
|
||||
homepage 'http://cmus.sourceforge.net/'
|
||||
url 'https://downloads.sourceforge.net/cmus/cmus-v2.5.0.tar.bz2'
|
||||
sha1 '244975a5ff642567acb047f6bd518e4a3271c25b'
|
||||
homepage "http://cmus.sourceforge.net/"
|
||||
head "https://git.gitorious.org/cmus/cmus.git"
|
||||
|
||||
head 'https://git.gitorious.org/cmus/cmus.git'
|
||||
stable do
|
||||
url "https://github.com/cmus/cmus/archive/v2.5.1.tar.gz"
|
||||
sha1 "fd6c63c7cb405e4b4fea6a737074c454f602c202"
|
||||
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
|
||||
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}"
|
||||
|
|
Loading…
Reference in a new issue