archivemount 0.8.3

Closes Homebrew/homebrew#25501.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Sorin Ionescu 2013-12-28 14:57:51 -05:00 committed by Adam Vandenberg
parent 4b48baaa3a
commit 0596de41ea

25
Formula/archivemount.rb Normal file
View file

@ -0,0 +1,25 @@
require 'formula'
class Archivemount < Formula
homepage 'http://www.cybernoia.de/software/archivemount.html'
url 'http://www.cybernoia.de/software/archivemount/archivemount-0.8.3.tar.gz'
sha1 '8dbe4681fec3f4bbd69801204480192ad4f3f836'
head 'http://cybernoia.de/software/archivemount/git'
depends_on 'pkg-config' => :build
depends_on 'osxfuse'
depends_on 'libarchive'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system bin/"archivemount", "--version"
end
end