f6e80bdea2
New `depends_on :python` Dependency. New `depends_on :python3` Dependency. To avoid having multiple formulae with endings -py2 and -py3, we will handle support for different pythons (2.x vs. 3.x) in the same formula. Further brewed vs. external python will be transparently supported. The formula also gets a new object `python`, which is false if no Python is available or the user has disabled it. Otherwise it is defined and provides several support methods: python.site_packages # the site-packages in the formula's Cellar python.global_site_packages python.binary # the full path to the python binary python.prefix python.version python.version.major python.version.minor python.xy # => e.g. "python2.7" python.incdir # includes of python python.libdir # the python dylib library python.pkg_config_path # used internally by brew python.from_osx? python.framework? python.universal? python.pypy? python.standard_caveats # Text to set PYTHONPATH for python.from_osx? python.if3then3 # => "" for 2.x and to "3" for 3.x. Further, to avoid code duplication, `python` takes an optional block that is run twice if the formula defines depends_on :python AND :python3. python do system python, 'setup.py', "--prefix=#{prefix}" end Read more in the Homebrew wiki.
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Grc < Formula
|
|
homepage 'http://korpus.juls.savba.sk/~garabik/software/grc.html'
|
|
url 'http://korpus.juls.savba.sk/~garabik/software/grc/grc_1.4.tar.gz'
|
|
sha1 '79fd504d8291f13486d361611415ae60fa56712a'
|
|
|
|
depends_on :python
|
|
|
|
def install
|
|
#TODO we should deprefixify since it's python and thus possible
|
|
inreplace ['grc', 'grc.1'], '/etc', etc
|
|
inreplace ['grcat', 'grcat.1'], '/usr/local', prefix
|
|
inreplace ['grc', 'grcat'], '#! /usr/bin/python', '#!/usr/bin/env python'
|
|
|
|
etc.install 'grc.conf'
|
|
bin.install %w[grc grcat]
|
|
(share+'grc').install Dir['conf.*']
|
|
man1.install %w[grc.1 grcat.1]
|
|
|
|
(prefix+'etc/grc.bashrc').write rc_script
|
|
end
|
|
|
|
def rc_script; <<-EOS.undent
|
|
GRC=`which grc`
|
|
if [ "$TERM" != dumb ] && [ -n "$GRC" ]
|
|
then
|
|
alias colourify="$GRC -es --colour=auto"
|
|
alias configure='colourify ./configure'
|
|
alias diff='colourify diff'
|
|
alias make='colourify make'
|
|
alias gcc='colourify gcc'
|
|
alias g++='colourify g++'
|
|
alias as='colourify as'
|
|
alias gas='colourify gas'
|
|
alias ld='colourify ld'
|
|
alias netstat='colourify netstat'
|
|
alias ping='colourify ping'
|
|
alias traceroute='colourify /usr/sbin/traceroute'
|
|
fi
|
|
EOS
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
New shell sessions will start using GRC after you add this to your profile:
|
|
source "`brew --prefix`/etc/grc.bashrc"
|
|
EOS
|
|
end
|
|
end
|