afuse 0.4
Closes Homebrew/homebrew#16942. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
25cdc60b48
commit
8dc1693d6a
1 changed files with 25 additions and 0 deletions
25
Formula/afuse.rb
Normal file
25
Formula/afuse.rb
Normal file
|
@ -0,0 +1,25 @@
|
|||
require 'formula'
|
||||
|
||||
class Afuse < Formula
|
||||
homepage 'https://github.com/pcarrier/afuse/'
|
||||
url 'https://afuse.googlecode.com/files/afuse-0.4.tar.gz'
|
||||
sha1 '8587b9c590310a63519054c4a577388d15a3d7bb'
|
||||
|
||||
depends_on :automake
|
||||
depends_on :libtool
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on 'fuse4x'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
|
||||
def caveats; <<-EOS.undent
|
||||
Make sure to follow the directions given by `brew info fuse4x-kext`
|
||||
before trying to use a FUSE-based filesystem.
|
||||
EOS
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue