Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Last active August 29, 2015 13:56
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rummelonp/9186580 to your computer and use it in GitHub Desktop.
Save rummelonp/9186580 to your computer and use it in GitHub Desktop.
Homebrew で grep 2.18 入れるやつ
require 'formula'
class Grep < Formula
url 'http://ftp.gnu.org/gnu/grep/grep-2.18.tar.xz'
sha1 'fdb12580714966745635da7d9db55060f88db28b'
version '2.18'
depends_on 'pcre'
def install
system "./configure --prefix=#{prefix}"
system "make install"
end
end
@rummelonp
Copy link
Author

brew install https://gist.githubusercontent.com/mitukiii/9186580/raw/grep.rb 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment