blob: 471457d2ff91cd2aa04ef36163cecebb15992832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/bin/bash
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
|