2013-05-01 03:44:50 +00:00
|
|
|
class G2 < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Friendly git client"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://orefalo.github.io/g2/"
|
|
|
|
url "https://github.com/orefalo/g2/archive/v1.1.tar.gz"
|
|
|
|
sha256 "bc534a4cb97be200ba4e3cc27510d8739382bb4c574e3cf121f157c6415bdfba"
|
2013-05-01 03:44:50 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
head "https://github.com/orefalo/g2.git"
|
2013-05-01 03:44:50 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make", "prefix=#{prefix}", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2013-08-05 17:29:46 +00:00
|
|
|
To complete the installation:
|
|
|
|
. #{prefix}/g2-install.sh
|
|
|
|
|
|
|
|
NOTE: This will install a new ~/.gitconfig, backing up any existing
|
|
|
|
file first. For more information view:
|
|
|
|
#{prefix}/README.md
|
|
|
|
EOS
|
2013-05-01 03:44:50 +00:00
|
|
|
end
|
|
|
|
end
|