-
Notifications
You must be signed in to change notification settings - Fork 11
/
start.sh
executable file
·176 lines (156 loc) · 2.97 KB
/
start.sh
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/bin/bash
#Shared Host FFMPEG installation script
# Copyright (C) 2000-2007 Sherin.in. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
RED='\033[01;31m'
RESET='\033[0m'
export PATH=$HOME/bin:$PATH
export LD_LIBRARY_PATH=$HOME/lib:/usr/local/lib:$LD_LIBRARY_PATH
export LIBRARY_PATH=$HOME/lib:/usr/local/lib:$LIBRARY_PATH
export CPATH=$HOME/include:/usr/local/include:$CPATH
export TMPDIR=$HOME/tmp
#presetup
sh presetup.sh
#autoconf
sh autoconf.sh
if [ -e "$HOME/bin/autoconf" ]; then
echo " "
else
echo " "
echo " "
echo -e $RED" Autoconf installation Failed :( , please visit the forum"$RESET
echo " "
echo " "
exit
fi
#automake
sh automake.sh
if [ -e "$HOME/bin/automake" ]; then
echo " "
else
echo " "
echo " "
echo -e $RED" Automake installation Failed :( , please visit the forum"$RESET
echo " "
echo " "
exit
fi
#libtool
sh libtool.sh
if [ -e "$HOME/bin/libtool" ]; then
echo " "
else
echo " "
echo " "
echo -e $RED" Libtool installation Failed :( , please visit the forum"$RESET
echo " "
echo " "
exit
fi
#libiconv
sh libiconv.sh
#libpng
sh libpng.sh
#libjpeg
sh libjpeg.sh
#zlib
sh zlib.sh
#libwmf
sh libwmf.sh
#freetype
sh freetype.sh
#gettext
sh gettext.sh
#gd
sh gd.sh
#ruby
sh ruby.sh
#flvtool2
sh flvtool2.sh
#lame
sh lame.sh
#codecs
sh codecs.sh
#libogg
sh libogg.sh
#libvorbis
sh libvorbis.sh
#vorbis-tools
sh vorbis-tools.sh
#libtheora
sh libtheora.sh
#amrnb
sh amrnb.sh
#amrwd
sh amrwb.sh
#liba52
sh liba52.sh
#facc
sh facc.sh
#faad2
sh faad2.sh
#mplayer
sh mplayer.sh
if [ -e "$HOME/bin/mplayer" ]; then
echo " "
else
echo " "
echo " "
echo -e $RED" Mplayer installation Failed :( , please visit the forum"$RESET
echo " "
echo " "
exit
fi
#ffmpeg
sh ffmpeg.sh
if [ -e "$HOME/bin/ffmpeg" ]; then
echo " "
else
echo " "
echo " "
echo -e $RED" FFMPEG installation Failed :( , please visit the forum"$RESET
echo " "
echo " "
exit
fi
#mplayer -rebuild
sh mplayer.sh
if [ -e "$HOME/bin/mplayer" ]; then
echo " "
else
echo " "
echo " "
echo -e $RED" Mplayer installation Failed :( , please visit the forum"$RESET
echo " "
echo " "
exit
fi
#php
sh php.sh
if [ -e "$HOME/bin/php-cgi" ]; then
echo " "
else
echo " "
echo " "
echo -e $RED" PHP installation Failed :( , please visit the forum"$RESET
echo " "
echo " "
exit
fi
#ffmpeg-php
sh ffmpeg-php.sh
#postinstall
sh post.sh