d6d4219af8
brew install ncmpcpp was failing on a sha1 mismatch. It turns out the link is dead or something and redirects to a new homepage. The new links come from the page where the old ones were redirected to. Closes Homebrew/homebrew#14218. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Ncmpcpp < Formula
|
|
homepage 'http://ncmpcpp.rybczak.net/'
|
|
url 'http://ncmpcpp.rybczak.net/stable/ncmpcpp-0.5.10.tar.bz2'
|
|
sha1 '5e34733e7fbaf2862f04fdf8af8195ce860a9014'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'taglib'
|
|
depends_on 'libmpdclient'
|
|
depends_on 'fftw' if build.include? "visualizer"
|
|
|
|
fails_with :clang do
|
|
build 421
|
|
cause "'itsTempString' is a private member of 'NCurses::basic_buffer<char>'"
|
|
end
|
|
|
|
option 'outputs', 'Compile with mpd outputs control'
|
|
option 'visualizer', 'Compile with built-in visualizer'
|
|
option 'clock', 'Compile with optional clock tab'
|
|
|
|
def install
|
|
ENV.append 'LDFLAGS', '-liconv'
|
|
args = ["--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-taglib",
|
|
"--with-curl",
|
|
"--enable-unicode"]
|
|
args << '--enable-outputs' if build.include? 'outputs'
|
|
args << '--enable-visualizer' if build.include? 'visualizer'
|
|
args << '--enable-clock' if build.include? 'clock'
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|