57 lines
2 KiB
Ruby
57 lines
2 KiB
Ruby
class Cadaver < Formula
|
|
desc "Command-line client for DAV"
|
|
homepage "http://www.webdav.org/cadaver/"
|
|
url "http://www.webdav.org/cadaver/cadaver-0.23.3.tar.gz"
|
|
sha256 "fd4ce68a3230ba459a92bcb747fc6afa91e46d803c1d5ffe964b661793c13fca"
|
|
revision 1
|
|
|
|
bottle do
|
|
revision 1
|
|
sha256 "7cbfeeedd92780e3eec32298e1ded1f341805094d470787d8ca36c5ede8bf33d" => :el_capitan
|
|
sha256 "95b45e67937664ebdd1a96b3ef20ed870eba06270ce3d611aed233a337534008" => :mavericks
|
|
sha256 "ef03f3dbc276461c957b0f72f906402b4c507dc21a2e77774b716e6cf90813cd" => :mountain_lion
|
|
sha256 "37e4a590ce5cb112ce78a63f126b45bd581400444f09aa35dff8bcdad9764668" => :lion
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "gettext"
|
|
depends_on "readline"
|
|
depends_on "neon"
|
|
depends_on "openssl"
|
|
|
|
# enable build with the latest neon
|
|
patch :DATA
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--with-ssl=openssl",
|
|
"--with-libs=#{Formula["openssl"].opt_prefix}",
|
|
"--with-neon=#{Formula["neon"].opt_prefix}"
|
|
system "make", "-C", "lib/intl"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
--- cadaver-0.23.3-orig/configure 2009-12-16 01:36:26.000000000 +0300
|
|
+++ cadaver-0.23.3/configure 2013-11-04 22:44:00.000000000 +0400
|
|
@@ -10328,7 +10328,7 @@
|
|
$as_echo "$ne_cv_lib_neon" >&6; }
|
|
if test "$ne_cv_lib_neon" = "yes"; then
|
|
ne_cv_lib_neonver=no
|
|
- for v in 27 28 29; do
|
|
+ for v in 27 28 29 30; do
|
|
case $ne_libver in
|
|
0.$v.*) ne_cv_lib_neonver=yes ;;
|
|
esac
|
|
@@ -10975,8 +10975,8 @@
|
|
fi
|
|
|
|
else
|
|
- { $as_echo "$as_me:$LINENO: incompatible neon library version $ne_libver: wanted 0.27 28 29" >&5
|
|
-$as_echo "$as_me: incompatible neon library version $ne_libver: wanted 0.27 28 29" >&6;}
|
|
+ { $as_echo "$as_me:$LINENO: incompatible neon library version $ne_libver: wanted 0.27 28 29 30" >&5
|
|
+$as_echo "$as_me: incompatible neon library version $ne_libver: wanted 0.27 28 29 30" >&6;}
|
|
neon_got_library=no
|
|
fi
|
|
|