wdfs: import from homebrew/fuse.
This commit is contained in:
parent
243024da5f
commit
c8ff28bfee
1 changed files with 21 additions and 0 deletions
21
Formula/wdfs.rb
Normal file
21
Formula/wdfs.rb
Normal file
|
@ -0,0 +1,21 @@
|
|||
class Wdfs < Formula
|
||||
desc "Webdav file system"
|
||||
homepage "http://noedler.de/projekte/wdfs/"
|
||||
url "http://noedler.de/projekte/wdfs/wdfs-1.4.2.tar.gz"
|
||||
sha256 "fcf2e1584568b07c7f3683a983a9be26fae6534b8109e09167e5dff9114ba2e5"
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "glib"
|
||||
depends_on "neon"
|
||||
depends_on :osxfuse
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/wdfs", "-v"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue