EPICS Installation @ GSI: global Environment Variables During Setup
During installation those environment variables are used to define a common setup environment
-
%EPICS_ALL_EPICS_TOP_DIR_NAME%
- top directory which holds different EPICS versions and whose bin directory is included in
$PATH
(e.g. ~epics
, /usr/local/pub
)
-
%EPICS_DOWNLOAD_DIR_NAME%
- directory where you store your downloads
-
%EPICS_HOME_DIR_NAME%
- directory where your current installation should be (installed)
-
%EPICS_VERSION_NAME%
- version to be installed
therefore do the export here:
%COMMENT_CMD% Global installation settings
echo -n '%EPICS_ALL_EPICS_TOP_DIR_DUMMY%: ' && read %EPICS_ALL_EPICS_TOP_DIR_NAME% && export %EPICS_ALL_EPICS_TOP_DIR_NAME%
echo -n '%EPICS_HOME_DIR_DUMMY%: ' && read %EPICS_HOME_DIR_NAME% && export %EPICS_HOME_DIR_NAME%
echo -n '%EPICS_DOWNLOAD_DIR_DUMMY%: ' && read %EPICS_DOWNLOAD_DIR_NAME% && export %EPICS_DOWNLOAD_DIR_NAME%
echo -n '%EPICS_VERSION_DUMMY%: ' && read %EPICS_VERSION_NAME% && export %EPICS_VERSION_NAME%
(edit
EpicsInstallationAtGsiEnvironmentVariablesDuringSetupCode)
--
PeterZumbruch - 22 Apr 2014