aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorkmowery2010-06-17 20:49:12 -0700
committerAdam Vandenberg2010-06-17 21:20:37 -0700
commit8c24aca1889b5f15ce9d60ce7671730cf50f3ba3 (patch)
treeaef793838fab4605f8b2552959bf9923a685cd7b /Library
parent97e109bb0561aee02e4cd5bf33690a0fa25b4c9a (diff)
downloadhomebrew-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.rb26
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