diff options
| author | Adam Vandenberg | 2010-09-26 20:18:01 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-09-26 20:18:01 -0700 |
| commit | 0a6af06567d6903de46a834f861b59ba54f04581 (patch) | |
| tree | ff135beeecba0cc7db28b3f7900fd408a241afc2 /Library/Formula | |
| parent | 1cfce9d7f70dc782921d75c4a6a4eec51055c4ee (diff) | |
| download | homebrew-0a6af06567d6903de46a834f861b59ba54f04581.tar.bz2 | |
Retired "grep" formula.
Grep comes with OS X, so we're moving it to the duplicates branch:
http://github.com/adamv/homebrew/tree/duplicates
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/grep.rb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Library/Formula/grep.rb b/Library/Formula/grep.rb deleted file mode 100644 index d4c204a8a..000000000 --- a/Library/Formula/grep.rb +++ /dev/null @@ -1,27 +0,0 @@ -require 'formula' - -class Grep <Formula - homepage 'http://www.gnu.org/software/grep/' - url 'http://mirror.its.uidaho.edu/pub/gnu/grep/grep-2.5.4.tar.bz2' - md5 '5650ee2ae6ea4b39e9459d7d0585b315' - - depends_on 'gettext' - depends_on 'pcre' - - def install - system "./configure", "--disable-debug", - "--disable-dependency-tracking", - "--disable-nls", - "--prefix=#{prefix}", - "--infodir=#{info}", - "--mandir=#{man}" - - # Configure gives me 2 copies of -lpcre and no -lintl, so fix that - inreplace "src/Makefile" do |s| - s.change_make_var! "LIBS", "-lintl -lpcre" - end - - system "make" - system "make install" - end -end |
