fuse-zip 0.4.0

Closes Homebrew/homebrew#25503.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Sorin Ionescu 2014-01-15 12:06:48 -05:00 committed by Adam Vandenberg
parent c17c5cbe91
commit 100435fc94
1 changed files with 20 additions and 0 deletions

20
Formula/fuse-zip.rb Normal file
View File

@ -0,0 +1,20 @@
require 'formula'
class FuseZip < Formula
homepage 'https://code.google.com/p/fuse-zip/'
url 'https://fuse-zip.googlecode.com/files/fuse-zip-0.4.0.tar.gz'
sha1 '09ee8c6f9d045436309e126d891510540c3d68fa'
head 'https://code.google.com/p/fuse-zip/', :using => :hg
depends_on 'pkg-config' => :build
depends_on 'osxfuse'
depends_on 'libzip'
def install
system "make", "INSTALLPREFIX=#{prefix}", "install"
end
test do
system "fuse-zip", "--help"
end
end