Skip to content

Commit

Permalink
fuse-zip: import from homebrew/fuse.
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Apr 19, 2017
1 parent bbdb078 commit 8005100
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Formula/fuse-zip.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
class FuseZip < Formula
desc "FUSE file system to create & manipulate ZIP archives"
homepage "https://code.google.com/p/fuse-zip/"
url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/fuse-zip/fuse-zip-0.4.0.tar.gz"
sha256 "db9eb13aa250061eaa7df6b1ee5022dbea54089094af94cc3d1767b63bdc9ca7"
revision 1

head "https://code.google.com/p/fuse-zip/", :using => :hg

depends_on "pkg-config" => :build
depends_on "libzip"
depends_on :osxfuse

def install
system "make", "INSTALLPREFIX=#{prefix}", "install"
end

test do
system bin/"fuse-zip", "--help"
end
end

0 comments on commit 8005100

Please sign in to comment.