aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/hfsutils.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/hfsutils.rb b/Library/Formula/hfsutils.rb
new file mode 100644
index 000000000..badcd22a6
--- /dev/null
+++ b/Library/Formula/hfsutils.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Hfsutils < Formula
+ url 'ftp://ftp.mars.org/pub/hfs/hfsutils-3.2.6.tar.gz'
+ homepage 'http://www.mars.org/home/rob/proj/hfs/'
+ md5 'fa572afd6da969e25c1455f728750ec4'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
+ bin.mkpath
+ man1.mkpath
+ system "make install"
+ end
+end