homebrew-core/Formula/cadaver.rb

25 lines
598 B
Ruby
Raw Normal View History

require 'formula'
2009-09-10 09:17:00 +00:00
2011-03-10 05:11:03 +00:00
class Cadaver < Formula
2009-11-26 06:46:29 +00:00
homepage 'http://www.webdav.org/cadaver/'
2012-03-10 03:21:12 +00:00
url 'http://www.webdav.org/cadaver/cadaver-0.23.3.tar.gz'
sha1 '4ad8ea2341b77e7dee26b46e4a8a496f1a2962cd'
2009-09-10 09:17:00 +00:00
2012-03-10 03:21:12 +00:00
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'readline'
depends_on 'neon'
2009-09-10 09:17:00 +00:00
def install
neon_prefix = Formula.factory('neon').opt_prefix
2012-03-10 03:21:12 +00:00
system "./configure", "--prefix=#{prefix}",
"--with-neon=#{neon_prefix}",
2009-11-26 06:46:29 +00:00
"--with-ssl"
2012-03-10 03:21:12 +00:00
cd 'lib/intl' do
system "make"
end
2009-09-10 09:17:00 +00:00
system "make install"
end
end