blob: badcd22a628a7e51c1e5c81f13fd7bf30c10430d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
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
 |