git-tf 2.0.0.20121030

Closes Homebrew/homebrew#16793.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Alex Regueiro 2012-12-27 03:46:04 +00:00 committed by Adam Vandenberg
parent 5e215034d6
commit 88eda2e398
1 changed files with 36 additions and 0 deletions

36
Formula/git-tf.rb Normal file
View File

@ -0,0 +1,36 @@
require 'formula'
class GitTf < Formula
homepage 'http://gittf.codeplex.com/'
url 'http://download.microsoft.com/download/A/E/2/AE23B059-5727-445B-91CC-15B7A078A7F4/git-tf-2.0.0.20121030.zip'
sha1 '0c51b2cc6316f37b9daed5f06d080a12003d3810'
depends_on 'maven' unless build.stable?
head do
url 'https://git01.codeplex.com/gittf', :using => :git
end
def install
if build.stable?
install_prefix = ''
else
system 'mvn', 'assembly:assembly'
system 'unzip', Dir['target/git-tf-*.zip'], "-dtarget"
install_prefix = Dir['target/git-tf-*/'].to_s
end
libexec.install install_prefix + 'git-tf'
libexec.install install_prefix + 'lib'
libexec.install install_prefix + 'native/macosx'
bin.write_exec_script 'git-tf'
(share/'doc/git-tf').install Dir['Git-TF_*'] + Dir['ThirdPartyNotices*']
end
def test
system "mvn", "test" unless build.stable?
system "#{bin}/git-tf"
system "git", "tf"
end
end