diff options
author | scuri <scuri> | 2011-02-26 02:27:16 +0000 |
---|---|---|
committer | scuri <scuri> | 2011-02-26 02:27:16 +0000 |
commit | 71323643c0a44d402b0eed448c46540e3396408f (patch) | |
tree | dace4abbfe73429c5b9fbda1e2ed78d03a3bd764 /install | |
parent | f3cd47662cb821d2355d98d32421b295b5e5689e (diff) |
*** empty log message ***
Diffstat (limited to 'install')
-rw-r--r-- | install | 24 |
1 files changed, 10 insertions, 14 deletions
@@ -3,13 +3,6 @@ # Include TEC_UNAME definitions source tec_uname -# System paths -if [ -d /usr/lib64 ]; then - SYSTEM_LIB=/usr/lib64 -else - SYSTEM_LIB=/usr/lib -fi - echo ' ' echo ' This script will install the >>Run Time<< libraries in the system' echo ' from the build directories or from the unpacked download.' @@ -24,24 +17,24 @@ EchoDownloadTip() echo ' The downloaded package must already be unpacked in the current directory.' echo ' Do NOT unpack different packages in the same directory.' echo ' For example:' - echo ' mkdir iup' - echo ' cd iup' - echo ' tar -xpvzf ../iup-3.2_Linux26g4_lib.tar.gz' + echo ' mkdir im' + echo ' cd im' + echo ' tar -xpvzf ../im-X.X_Linux26g4_lib.tar.gz' echo ' ' } Copy_RunTime_Extra_CD() { # Do NOT overwrite for FreeType - cp -fn $1libfreetype.so $SYSTEM_LIB + cp -fn $1libfreetype.so $TEC_SYSTEM_LIB - cp -fv $1libpdflib.so $SYSTEM_LIB - cp -fv $1libftgl.so $SYSTEM_LIB + cp -fv $1libpdflib.so $TEC_SYSTEM_LIB + cp -fv $1libftgl.so $TEC_SYSTEM_LIB } Copy_RunTime_To_System() { - cp -fv $2lib$1*.so $SYSTEM_LIB + cp -fv $2lib$1*.so $TEC_SYSTEM_LIB if [ $1 == cd ]; then Copy_RunTime_Extra_CD $2 @@ -65,6 +58,9 @@ Install_RunTime() fi } +# From tec_uname script ComputeTecUname +ComputeSystemPaths +#PrintInfo Install_RunTime im |