aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-05-31 10:32:01 -0500
committerJack Nagel2014-05-31 10:32:16 -0500
commit3c66cfc9bdbb1c265bd1ef9b42da9c01b8fe6591 (patch)
tree15198089bb3770139b20909af6f37240dd750b84 /Library
parentbe748a3af9513816163e78693be5f519f8e1f539 (diff)
downloadhomebrew-3c66cfc9bdbb1c265bd1ef9b42da9c01b8fe6591.tar.bz2
tee-clc: remove code for head because there isn't one
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tee-clc.rb18
1 files changed, 4 insertions, 14 deletions
diff --git a/Library/Formula/tee-clc.rb b/Library/Formula/tee-clc.rb
index 345b79337..9aa13b160 100644
--- a/Library/Formula/tee-clc.rb
+++ b/Library/Formula/tee-clc.rb
@@ -8,20 +8,10 @@ class TeeClc < Formula
conflicts_with 'tiny-fugue', :because => 'both install a `tf` binary'
def install
- if build.stable?
- install_prefix = ''
- else
- system 'mvn', 'assembly:assembly'
- system 'unzip', Dir['target/tf-*.zip'], "-dtarget"
- install_prefix = Dir['target/tf-*/'].first.to_s
- end
-
- libexec.install install_prefix/'tf'
- libexec.install install_prefix/'lib'
- (libexec/"native").install install_prefix/'native/macosx'
-
- bin.write_exec_script libexec/'tf'
- share.install 'help'
+ libexec.install "tf", "lib"
+ (libexec/"native").install "native/macosx"
+ bin.write_exec_script libexec/"tf"
+ share.install "help"
end
test do