diff options
| author | Markus Hubig | 2011-11-22 15:15:08 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-18 13:15:37 -0700 |
| commit | 2242bf71f64b2defe0f41c2b557c5b31edc9aa00 (patch) | |
| tree | 4784fcb12165bf8cf80e9b848eae545c6618fc76 /Library/Formula | |
| parent | 32636c7d83a02cbc117028b9d7353096f0234455 (diff) | |
| download | homebrew-2242bf71f64b2defe0f41c2b557c5b31edc9aa00.tar.bz2 | |
wdfs 1.4.2
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 #8731.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/wdfs.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/wdfs.rb b/Library/Formula/wdfs.rb new file mode 100644 index 000000000..a4dcbcc3b --- /dev/null +++ b/Library/Formula/wdfs.rb @@ -0,0 +1,21 @@ +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 |
