homebrew-core/Formula/neon.rb

27 lines
646 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
url 'http://www.webdav.org/neon/neon-0.29.3.tar.gz'
md5 'ba1015b59c112d44d7797b62fe7bee51'
homepage 'http://www.webdav.org/neon/'
2009-08-08 12:52:48 +00:00
depends_on 'pkg-config' => :build
keg_only :provided_by_osx
2010-05-11 03:37:12 +00:00
def options
[['--universal', 'Builds a universal binary.']]
2010-05-11 03:37:12 +00:00
end
2009-08-08 12:52:48 +00:00
def install
2010-05-11 03:37:12 +00:00
ENV.universal_binary if ARGV.include? '--universal'
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