homebrew-core/Formula/neon.rb

26 lines
679 B
Ruby
Raw Normal View History

require 'formula'
2009-08-08 12:52:48 +00:00
2011-03-10 05:11:03 +00:00
class Neon < Formula
2012-01-08 17:55:03 +00:00
url 'http://www.webdav.org/neon/neon-0.29.6.tar.gz'
sha1 'ae1109923303f67ed3421157927bc4bc29c58961'
homepage 'http://www.webdav.org/neon/'
2009-08-08 12:52:48 +00:00
depends_on 'pkg-config' => :build
2011-03-16 05:01:31 +00:00
keg_only :provided_by_osx,
"Compiling newer versions of Subversion on 10.6 require this newer neon."
option :universal
2010-05-11 03:37:12 +00:00
2009-08-08 12:52:48 +00:00
def install
ENV.universal_binary if build.universal?
2010-05-11 03:37:12 +00:00
2009-09-27 00:56:10 +00:00
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--enable-shared",
"--disable-static",
2009-09-27 00:56:10 +00:00
"--with-ssl"
2009-08-08 12:52:48 +00:00
system "make install"
end
end