980e486aca
Wdfs is a webdav filesystem that makes it possible to mount a webdav share under linux, freebsd and apple mac os x. Wdfs has some special features for accessing subversion repositories via webdav. It's based on fuse and neon. Closes Homebrew/homebrew#8731. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
21 lines
486 B
Ruby
21 lines
486 B
Ruby
require 'formula'
|
|
|
|
class Wdfs < Formula
|
|
homepage 'http://noedler.de/projekte/wdfs/'
|
|
url 'http://noedler.de/projekte/wdfs/wdfs-1.4.2.tar.gz'
|
|
md5 '628bb44194d04c1cf8aacc446ed0a230'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'neon'
|
|
depends_on 'fuse4x'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/wdfs -v"
|
|
end
|
|
end
|