aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorVincent Landgraf2009-12-20 23:42:33 +0100
committerAdam Vandenberg2010-06-10 09:54:32 -0700
commite5ac846c9db4a374cac9a7c72f6e16d79b273491 (patch)
tree9d1c66546ec79785a30a2e72e82c9e9cdffa1d26 /Library/Formula
parentcd1fa650668cd575f465fad97422d200b303993f (diff)
downloadhomebrew-e5ac846c9db4a374cac9a7c72f6e16d79b273491.tar.bz2
Add e2fsprogs.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/e2fsprogs.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/e2fsprogs.rb b/Library/Formula/e2fsprogs.rb
new file mode 100644
index 000000000..2d851d175
--- /dev/null
+++ b/Library/Formula/e2fsprogs.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class E2fsprogs <Formula
+ url 'http://downloads.sourceforge.net/project/e2fsprogs/e2fsprogs/1.41.9/e2fsprogs-1.41.9.tar.gz'
+ homepage 'http://e2fsprogs.sourceforge.net/'
+ md5 '52f60a9e19a02f142f5546f1b5681927'
+
+ def keg_only?
+ "This brew installs several commands which override OS X-provided file system commands."
+ end
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end