gti 1.0.3

From the homepage:

"It's a program that displays a badly made ASCII-art animation to punish
you for your typing error - and after that magically launches the
command you meant to launch.

The code is available under an MIT-like license on github - though of
course anybody can write his or her own version in a couple of minutes.

This whole thing is heavily inspired by sl, which displays a steam
locomotive. However, gti is actually nicer than sl as it at least
executes git after the animation. :-)"

Closes Homebrew/homebrew#14223.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Rob Hanlon 2012-08-15 17:48:02 -07:00 committed by Adam Vandenberg
parent 8f25ceafec
commit 82930641eb
1 changed files with 14 additions and 0 deletions

14
Formula/gti.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Gti < Formula
homepage 'http://r-wos.org/hacks/gti'
url 'https://github.com/rwos/gti/tarball/v1.0.3'
sha1 '53ccd11466af6b859e5ec2ceec30f39bdc50c451'
head 'git://github.com/rwos/gti.git'
def install
system 'make', "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
bin.install 'gti'
end
end