2010-03-13 22:49:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GitSsh < Formula
|
2013-01-28 02:44:43 +00:00
|
|
|
homepage 'https://github.com/lemarsu/git-ssh'
|
2013-03-29 01:03:20 +00:00
|
|
|
url 'https://github.com/lemarsu/git-ssh/archive/v0.2.0.tar.gz'
|
|
|
|
sha1 'a3014db9ae65fcf135a5224a18313f40aa19c7d5'
|
2010-03-13 22:49:11 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
# Change loading of required code from libexec location (Cellar only)
|
|
|
|
inreplace "bin/git-ssh" do |s|
|
|
|
|
s.sub! /path = .*$/, "path = '#{libexec}'"
|
|
|
|
end
|
|
|
|
# Install main script
|
|
|
|
bin.install "bin/git-ssh"
|
|
|
|
# Install required code into libexec location (Cellar only)
|
|
|
|
libexec.install Dir["lib/*"]
|
|
|
|
end
|
|
|
|
end
|