homebrew-core/Formula/neon.rb
Adam Vandenberg d64480a35f disable-nls for neon and subversion
Explicitly disable nls for neon and subversion in a hand-wavy
attempt to fix Homebrew/homebrew#17613.
2013-05-26 12:08:05 -07:00

26 lines
745 B
Ruby

require 'formula'
class Neon < Formula
homepage 'http://www.webdav.org/neon/'
url 'http://www.webdav.org/neon/neon-0.29.6.tar.gz'
sha1 'ae1109923303f67ed3421157927bc4bc29c58961'
depends_on 'pkg-config' => :build
keg_only :provided_by_osx,
"Compiling newer versions of Subversion on 10.6 require this newer neon."
option :universal
def install
ENV.universal_binary if build.universal?
ENV.enable_warnings
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--enable-shared",
"--disable-static",
"--disable-nls",
"--with-ssl"
system "make install"
end
end