27 lines
597 B
Ruby
27 lines
597 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Encfs <Formula
|
||
|
url 'http://encfs.googlecode.com/files/encfs-1.6-1.tgz'
|
||
|
homepage 'http://www.arg0.net/encfs'
|
||
|
md5 'db99570557cf432cca088748944fb74a'
|
||
|
|
||
|
depends_on 'pkg-config'
|
||
|
depends_on 'gettext'
|
||
|
depends_on 'boost'
|
||
|
depends_on 'rlog'
|
||
|
|
||
|
def caveats
|
||
|
<<-EOS.undent
|
||
|
encfs requires MacFUSE 2.6 or later to be installed.
|
||
|
You can find MacFUSE at:
|
||
|
http://code.google.com/p/macfuse/
|
||
|
EOS
|
||
|
end
|
||
|
|
||
|
def install
|
||
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||
|
system "make"
|
||
|
system "make install"
|
||
|
end
|
||
|
end
|