⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 install.sh

📁 speech signal process tools
💻 SH
字号:
#!/bin/sh## File:      install##   The main installation script for the NIST software distributions##   Changes since the original release:##   1.01  Corrected echo's behavious on systemV systems#   1.02  removed the shell functions for get_field and get_field_ids#### Define the echo commandif test "`echo -n foobar | egrep -e -n`" = "" ; then	ECHO_NNL="echo -n"	DONE_CMD="echo Done"else	ECHO_NNL="echo"	DONE_CMD=""fiVERSION=1.02echo "Installation Script Version $VERSION for the NIST Speech utilities"echo ""$ECHO_NNL "Searching for packages . . . "packages=`(cd lib/packages; ls *.pkg)|sed 's/.pkg//'`numpackages=`echo $packages| tr ' ' '\012'|sed '/^$/d' |wc -l|awk '{print $1}'`$DONE_CMDecho ""echo "Currently, there are $numpackages loaded and ready to install"for pkg in $packages ; do    echo "    `head -1 lib/packages/$pkg.pkg`"doneecho ""echo "Before Installation, this program needs some information"echo "concerning the computer compiling the programs"echo ""echo "This package can be installed on the following platforms."echo "You may choose to install this package using defaults for"echo "these systems, or customize the installation:"format="ID,OS,Compiler_Command,Compiler_Flags,Install_Command,Archive_Sorting_Command,Archive_Update_Command,Architecture"defs=`echo '1:Sun OS-4.1.[12]:gcc -ansi::install -c -s -m 755:ranlib:ar ru:SUN2:Sun Solaris:gcc::cp:echo:ar ru:SUN3:Next OS:cc::install -c -s -m 755:ranlib -s:ar ru:NEXT4:Dec Ultrix:gcc -ansi::cp:ranlib:ar ru:ULTRIX5:SGI IRIX:cc -ansi::cp:ar -rs:ar ru:SGI6:HP Unix:gcc -ansi::cp:ar -rs:ar -ru:HP7:Custom:cc:-g:install -s -m 755:ranlib:ar ru:SUN' | tr '\012' ','`Custom=7#get_field(){#    # $1 the definition string#    # $2 is the identifier#    # $3 is the field number#    echo "$1" | tr ',' '\012' | egrep "^$2:" | awk -F: "{print $"$3"}"#}ans='n'while test "$ans" = "n" ; do    # get all the field keys    for num in `echo "$defs" | tr ',' '\012' | awk -F: '{print $1}'` ; do#	id=`get_field "$defs" $num 2`        id=`echo "$defs" | tr ',' '\012' | egrep "^${num}:" | \		awk -F: '{print $2}'`        echo "$num:$id"  | awk -F: '{printf("   %6s:  %s\n",$1,$2)}'    done    echo ""    echo "Please Choose one:  "    $ECHO_NNL "   "    read system#    id=`get_field "$defs" $system 1`    id=`echo "$defs" | tr ',' '\012' | egrep "^${system}:" | \	awk -F: '{print $1}'`    if test "$id" != "" ; then	echo ""#	echo "Using the `get_field "$defs" $system 2` Defaults"	te=`echo "$defs" | tr ',' '\012' | egrep "^${system}:" | \		awk -F: '{print $2}'`	echo "Using the $te Defaults"	echo ""	ans="y"    else        echo "Invalid Answer.  Choose one of the following"	echo ""    fidoneif test "$system" = "$Custom" ; then    number=3;    field_values="Custom:"    for topic in `echo $format | sed 's/^[^,]*,[^,]*,//' | tr ',' ' '` ; do	ans="n"#        command=`get_field "$defs" $system $number`	command=`echo "$defs" | tr ',' '\012' | egrep "^${system}:" | \		awk -F: '{print $'$number'}'`	while test "$ans" = "n" ; do            echo "What is/are the `echo $topic|tr '_' ' '` ? [$command]"            read query	    if test "$query" = "" ; then                ans="y"                field_values="${field_values}${command}:"            else		command="$query"                echo "OK, The $topic command is '$command'.  Is this OK? [yes]"                read qu                if test "$qu" = "" -o "$qu" = "yes" -o "$qu" = "Y" -o "$qu" = "y" ; then                    ans="y"                    field_values="${field_values}${command}:"                fi            fi        done	number=`echo "$number + 1" | bc`    doneelse    field_values=`echo "$defs" | tr ',' '\012' | egrep "^$system:" | sed 's/^[^:]*://'`fiCOMPILER_COMMAND=`echo "$field_values" | awk -F: '{print $2}'` ; \			export COMPILER_COMMANDINSTALL_COMMAND=`echo "$field_values" | awk -F: '{print $4}'` ; \			export INSTALL_COMMANDRANLIB_COMMAND=`echo "$field_values" | awk -F: '{print $5}'` ; \			export RANLIB_COMMANDARCHIVER_COMMAND=`echo "$field_values" | awk -F: '{print $6}'` ; \			export ARCHIVER_COMMANDLOCAL_CC_DEFINES=`echo "$field_values" | awk -F: '{print $3}'`\ -DNARCH_`echo "$field_values" | awk -F: '{print $7}'` ; export LOCAL_CC_DEFINESecho "Defined Commands and Options:"echo "   Compiler           = $COMPILER_COMMAND"echo "   Compiler options   = $LOCAL_CC_DEFINES"echo "   Install            = $INSTALL_COMMAND"echo "   Ranlib             = $RANLIB_COMMAND"echo "   Archiver           = $ARCHIVER_COMMAND"echo ""# first do a chmod on the directoryies and filesecho "File Permissions:"echo "     If this distribution was loaded from a CD-rom, it is imperative"echo "     to change the permissions of all files and directories to be writable"echo "     by you.  If not, the installation process will fail."echo ""echo "Changing Permisions on Directories to 755"find . -type d -exec chmod 755 \{\} \;echo "Changing Permisions on Files to 644"find . -type f -exec chmod 644 \{\} \;# run each installation script for the packages"for pkg in $packages ; do    pkg_id=`head -1 lib/packages/$pkg.pkg`    if test -f lib/packages/$pkg.pas ; then        if test "`diff lib/packages/$pkg.pas lib/packages/$pkg.pkg`" = "" ; then            echo "Package $pkg_id Already installed"        else	    echo "Running Installation for $pkg_id"	    if test -f src/scripts/$pkg.ins ; then		sh src/scripts/$pkg.ins        	if test "$?" != "0" ; then	            echo "    Install script for $pkg_id failed, Call NIST"        	    exit 1        	fi	    fi	    cp lib/packages/$pkg.pkg lib/packages/$pkg.pas        fi    else	echo "Running Installation for $pkg_id"	if test -f src/scripts/$pkg.ins ; then	    sh src/scripts/$pkg.ins            if test "$?" != "0" ; then	        echo "    Install script for $pkg_id failed, Call NIST"        	exit 1            fi	fi	cp lib/packages/$pkg.pkg lib/packages/$pkg.pas    fidoneecho ""echo "Creating Makefiles . . . "sh src/scripts/gen_make.sh `pwd`/src/scriptsecho "Creating executables . . . "make install

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -