archivemount 0.8.3
Closes Homebrew/homebrew#25501. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
4b48baaa3a
commit
0596de41ea
1 changed files with 25 additions and 0 deletions
25
Formula/archivemount.rb
Normal file
25
Formula/archivemount.rb
Normal 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
|
Loading…
Reference in a new issue