homebrew-core/Formula/libcaca.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

54 lines
1.7 KiB
Ruby

class Libcaca < Formula
desc "Convert pixel information into colored ASCII art"
homepage "http://caca.zoy.org/wiki/libcaca"
url "https://fossies.org/linux/privat/libcaca-0.99.beta19.tar.gz"
version "0.99b19"
sha256 "128b467c4ed03264c187405172a4e83049342cc8cc2f655f53a2d0ee9d3772f4"
bottle do
cellar :any
revision 1
sha1 "d377e78210582b24626f9f2d7bbb1d1442c1131d" => :yosemite
sha1 "5dd773ce055c6cb9a754c3d691c30c05bf7dbc18" => :mavericks
end
depends_on "pkg-config" => :build
depends_on "imlib2" => :optional
depends_on :x11 if build.with? "imlib2"
fails_with :llvm do
cause "Unsupported inline asm: input constraint with a matching output constraint of incompatible type"
end
def install
# Some people can't compile when Java is enabled. See:
# https://github.com/Homebrew/homebrew/issues/issue/2049
# Don't build csharp bindings
# Don't build ruby bindings; fails for adamv w/ Homebrew Ruby 1.9.2
# Fix --destdir issue.
# ../.auto/py-compile: Missing argument to --destdir.
inreplace "python/Makefile.in", '$(am__py_compile) --destdir "$(DESTDIR)"', "$(am__py_compile) --destdir \"$(cacadir)\""
args = ["--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-doc",
"--disable-slang",
"--disable-java",
"--disable-csharp",
"--disable-ruby"]
# fix missing x11 header check: https://github.com/Homebrew/homebrew/issues/28291
args << "--disable-x11" if build.without? "imlib2"
system "./configure", *args
system "make"
ENV.j1 # Or install can fail making the same folder at the same time
system "make", "install"
end
test do
system "#{bin}/img2txt", "--version"
end
end