2011-03-28 20:44:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Hfsutils < Formula
|
|
|
|
homepage 'http://www.mars.org/home/rob/proj/hfs/'
|
2013-01-28 03:26:23 +00:00
|
|
|
url 'ftp://ftp.mars.org/pub/hfs/hfsutils-3.2.6.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '6d71dfb2c93c0d8082972d39f3f75ae53a438d5d'
|
2011-03-28 20:44:08 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
|
|
bin.mkpath
|
|
|
|
man1.mkpath
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|