aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-10-02 12:19:18 -0500
committerJack Nagel2011-10-02 12:20:09 -0500
commiteb366a8fd6f25b7a86686ab1ffaf742bb7121189 (patch)
treefdf3e26b2fdb4411cabdbbfbd46c7b4454b602df /Library
parentec32382a4db34732d085bd8c94870a0b25122bd9 (diff)
downloadhomebrew-eb366a8fd6f25b7a86686ab1ffaf742bb7121189.tar.bz2
Remove lsof formula
It was a system duplicate that slipped through accidentally, so it is now available in Homebrew-alt. cf. #7903. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-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