ncmpcpp 0.6
This commit is contained in:
parent
d87dddaadc
commit
b625753dec
1 changed files with 8 additions and 20 deletions
|
@ -2,24 +2,8 @@ require 'formula'
|
||||||
|
|
||||||
class Ncmpcpp < Formula
|
class Ncmpcpp < Formula
|
||||||
homepage 'http://ncmpcpp.rybczak.net/'
|
homepage 'http://ncmpcpp.rybczak.net/'
|
||||||
|
url 'http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.6.tar.bz2'
|
||||||
stable do
|
sha1 '7bbd63c6f17aa8cdf1190b19e2dc893df188da1c'
|
||||||
url 'http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.5.10.tar.bz2'
|
|
||||||
sha1 '5e34733e7fbaf2862f04fdf8af8195ce860a9014'
|
|
||||||
|
|
||||||
fails_with :clang do
|
|
||||||
cause "'itsTempString' is a private member of 'NCurses::basic_buffer<char>'"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
devel do
|
|
||||||
url "http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.6_beta4.tar.bz2"
|
|
||||||
sha1 "e995546831489e3629a961512365dc2d3f2f7310"
|
|
||||||
version "0.6-beta4"
|
|
||||||
|
|
||||||
depends_on 'boost'
|
|
||||||
depends_on 'readline'
|
|
||||||
end
|
|
||||||
|
|
||||||
head do
|
head do
|
||||||
url 'git://repo.or.cz/ncmpcpp.git'
|
url 'git://repo.or.cz/ncmpcpp.git'
|
||||||
|
@ -27,20 +11,24 @@ class Ncmpcpp < Formula
|
||||||
depends_on "autoconf" => :build
|
depends_on "autoconf" => :build
|
||||||
depends_on "automake" => :build
|
depends_on "automake" => :build
|
||||||
depends_on "libtool" => :build
|
depends_on "libtool" => :build
|
||||||
depends_on 'boost'
|
|
||||||
depends_on 'readline'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
depends_on 'pkg-config' => :build
|
depends_on 'pkg-config' => :build
|
||||||
depends_on 'taglib'
|
depends_on 'taglib'
|
||||||
depends_on 'libmpdclient'
|
depends_on 'libmpdclient'
|
||||||
|
depends_on 'boost'
|
||||||
|
depends_on 'readline'
|
||||||
|
|
||||||
depends_on 'fftw' if build.include? "visualizer"
|
depends_on 'fftw' if build.include? "visualizer"
|
||||||
|
|
||||||
option 'outputs', 'Compile with mpd outputs control'
|
option 'outputs', 'Compile with mpd outputs control'
|
||||||
option 'visualizer', 'Compile with built-in visualizer'
|
option 'visualizer', 'Compile with built-in visualizer'
|
||||||
option 'clock', 'Compile with optional clock tab'
|
option 'clock', 'Compile with optional clock tab'
|
||||||
|
|
||||||
|
needs :cxx11
|
||||||
|
|
||||||
def install
|
def install
|
||||||
|
ENV.cxx11
|
||||||
ENV.append 'LDFLAGS', '-liconv'
|
ENV.append 'LDFLAGS', '-liconv'
|
||||||
args = ["--disable-dependency-tracking",
|
args = ["--disable-dependency-tracking",
|
||||||
"--prefix=#{prefix}",
|
"--prefix=#{prefix}",
|
||||||
|
|
Loading…
Reference in a new issue