aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lsof.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/lsof.rb')
-rw-r--r--Library/Formula/lsof.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/Library/Formula/lsof.rb b/Library/Formula/lsof.rb
deleted file mode 100644
index 8fa4deeca..000000000
--- a/Library/Formula/lsof.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-require 'formula'
-
-class Lsof < Formula
- url 'ftp://sunsite.ualberta.ca/pub/Mirror/lsof/lsof_4.84.tar.bz2'
- md5 'a09326df500ef7e4550af546868338d6'
- homepage 'http://people.freebsd.org/~abe/'
-
- def install
- system "tar xf lsof_4.84_src.tar"
- Dir.chdir "lsof_4.84_src" do
- mv "00README", "../README"
- system "./Configure -n darwin"
- system "make"
- bin.install "lsof"
- end
- end
-end