homebrew-core/Formula/libcaca.rb

32 lines
1.0 KiB
Ruby
Raw Normal View History

require 'formula'
class Libcaca <Formula
2010-05-22 10:40:42 +00:00
url 'http://caca.zoy.org/files/libcaca/libcaca-0.99.beta17.tar.gz'
version '0.99b17'
homepage 'http://caca.zoy.org/wiki/libcaca'
2010-05-22 10:40:42 +00:00
md5 '790d6e26b7950e15909fdbeb23a7ea87'
2010-10-21 04:42:10 +00:00
depends_on 'pkg-config' => :build
2010-05-22 10:40:42 +00:00
depends_on 'gettext'
def install
2010-08-16 00:27:12 +00:00
# Some people can't compile when Java is enabled. See:
# http://github.com/mxcl/homebrew/issues/issue/2049
2010-10-21 04:42:10 +00:00
# Don't build csharp bindings
# Don't build ruby bindings; fails for adamv w/ Homebrew Ruby 1.9.2
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-imlib2",
"--disable-doc",
2010-08-16 00:27:12 +00:00
"--disable-slang",
2010-10-21 04:42:10 +00:00
"--disable-java",
"--disable-csharp",
"--disable-ruby"
ENV.j1 # Or install can fail making the same folder at the same time
system "make install"
end
end