Last active
August 29, 2015 13:56
-
-
Save rummelonp/9186580 to your computer and use it in GitHub Desktop.
Homebrew で grep 2.18 入れるやつ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Author
rummelonp
commented
Feb 24, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment