aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lsof.rb
blob: 9cb67ec0a24f7ea1190d8c51ab56783d1f4e7279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Lsof <Formula
  url 'ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/lsof.tar.bz2'
  version '4.83'
  md5 '8f731a6251b8c0143d585df0d5ca779e'
  homepage 'http://people.freebsd.org/~abe/'

  def install
    system "tar xf lsof_4.83_src.tar"
    Dir.chdir "lsof_4.83_src" do
      mv "00README", "../README"
      system "./Configure -n darwin"
      system "make"
      bin.install "lsof"
    end
  end
end