aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorM. Scott Ford2010-11-22 11:52:02 -0500
committerAdam Vandenberg2011-04-25 09:47:42 -0700
commit1d45d042a88b7554256c358c8350df8c819fb113 (patch)
tree534e2156a6c2cd53f4639ce650bae3fcada9a10c /Library/Formula
parentd9c42da74aefeaf77615acebbcef5401261aee36 (diff)
downloadhomebrew-1d45d042a88b7554256c358c8350df8c819fb113.tar.bz2
unfs3 0.9.22
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/unfs3.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/unfs3.rb b/Library/Formula/unfs3.rb
new file mode 100644
index 000000000..7f12d4cd9
--- /dev/null
+++ b/Library/Formula/unfs3.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Unfs3 < Formula
+ url 'http://sourceforge.net/projects/unfs3/files/unfs3/0.9.22/unfs3-0.9.22.tar.gz'
+ homepage 'http://unfs3.sourceforge.net'
+ md5 'ddf679a5d4d80096a59f3affc64f16e5'
+
+ def install
+ ENV.j1 # Build is not parallel-safe
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make"
+ system "make install"
+ end
+end