homebrew-core/Formula/encfs.rb

27 lines
627 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Encfs < Formula
url 'http://encfs.googlecode.com/files/encfs-1.7.2.tgz'
homepage 'http://www.arg0.net/encfs'
md5 '3a3fef640c7c9f020104304392cd1836'
depends_on 'pkg-config' => :build
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-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
2011-03-10 05:11:03 +00:00
end