diff options
| author | scuri <scuri> | 2011-02-26 02:27:09 +0000 | 
|---|---|---|
| committer | scuri <scuri> | 2011-02-26 02:27:09 +0000 | 
| commit | 0daf9f7ba7b50fea5c9764cf0dc05ad76c005716 (patch) | |
| tree | 6072aa3f3f149c9b73e14b4ae82de8a856d25435 /install_dev | |
| parent | 79e4bd4772219be603c4f5aa98b98c6c83e0ccbb (diff) | |
*** empty log message ***
Diffstat (limited to 'install_dev')
| -rw-r--r-- | install_dev | 29 | 
1 files changed, 12 insertions, 17 deletions
| diff --git a/install_dev b/install_dev index e4e3ea4..89afe26 100644 --- a/install_dev +++ b/install_dev @@ -3,14 +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 -SYSTEM_INC=/usr/include -  echo ' '  echo '  This script will install the >>Development<< files in the system'  echo '  from the build directories or from the unpacked download.' @@ -25,26 +17,26 @@ 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 cd' +  echo '     cd cd' +  echo '     tar -xpvzf ../cd-X.X_Linux26g4_lib.tar.gz'    echo ' '  }  Copy_Dev_Extra_CD()  {    # Do NOT overwrite for FreeType -  cp -fn $1libfreetype.a $SYSTEM_LIB +  cp -fn $1libfreetype.a $TEC_SYSTEM_LIB -  cp -fv $1libpdflib.a $SYSTEM_LIB -  cp -fv $1libftgl.a $SYSTEM_LIB +  cp -fv $1libpdflib.a $TEC_SYSTEM_LIB +  cp -fv $1libftgl.a $TEC_SYSTEM_LIB  }  Copy_Dev_To_System()  { -  mkdir -p $SYSTEM_INC/$1 -  cp -fv include/*.h $SYSTEM_INC/$1 -  cp -fv $2lib$1*.a $SYSTEM_LIB +  mkdir -p $TEC_SYSTEM_INC/$1 +  cp -fv include/*.h $TEC_SYSTEM_INC/$1 +  cp -fv $2lib$1*.a $TEC_SYSTEM_LIB    if [ $1 == cd ]; then      Copy_Dev_Extra_CD $2 @@ -68,6 +60,9 @@ Install_Dev()    fi  } +# From tec_uname script  ComputeTecUname +ComputeSystemPaths +#PrintInfo  Install_Dev cd | 
