X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=vstf%2Ftool_package%2Finstall.sh;fp=vstf%2Ftool_package%2Finstall.sh;h=0000000000000000000000000000000000000000;hb=478f1ca7c6732e4e94d072fb249b67ce7547be0d;hp=9d50516ecdc022969b670b0b178e8537a567c3e8;hpb=f5922fa21147a48bd6d956a5e5c59364718cf00a;p=bottlenecks.git diff --git a/vstf/tool_package/install.sh b/vstf/tool_package/install.sh deleted file mode 100644 index 9d50516e..00000000 --- a/vstf/tool_package/install.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash -############################################################################## -# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## - -function usage() -{ - echo -e "install: - install [path]; - -->ops: - path: path of the souce code, default : './' - " -} - -function install() -{ - local file=$1 - local dir=${file%.tar.gz} - tar -zxvf $file - cd $dir - if [ -e "configure" ]; then - ./configure - fi - if [ -e "Makefile" ]; then - make && make install - echo "install $dir successfully" - else - echo "install $dir failed" - fi - - cd .. && rm $dir -r - -} - -if [ $# -gt 2 ]; then - usage - exit -1 -fi - -code_path="./" -if [ $# -eq 2 ]; then - code_path=$1 -fi -cd $code_path -for file in $(ls *.tar.gz);do - install $file -done -