diff options
| author | kmowery | 2010-06-17 20:49:12 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-17 21:20:37 -0700 |
| commit | 8c24aca1889b5f15ce9d60ce7671730cf50f3ba3 (patch) | |
| tree | aef793838fab4605f8b2552959bf9923a685cd7b /Library | |
| parent | 97e109bb0561aee02e4cd5bf33690a0fa25b4c9a (diff) | |
| download | homebrew-8c24aca1889b5f15ce9d60ce7671730cf50f3ba3.tar.bz2 | |
encfs 1.6
FUSE-based encrypted filesystem
* Reformatted caveats
* Would not compile for me without gettext
* Removed unused configure switch
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/encfs.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Library/Formula/encfs.rb b/Library/Formula/encfs.rb new file mode 100644 index 000000000..92438144f --- /dev/null +++ b/Library/Formula/encfs.rb @@ -0,0 +1,26 @@ +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 |
