2019-01-25 11:39:31 +01:00
|
|
|
# Configuration of IRPF90 package
|
|
|
|
|
|
|
|
# Set the path of IRPF90 here:
|
2022-06-23 00:27:59 +02:00
|
|
|
export IRPF90_PATH=${QP_ROOT}/external/irpf90
|
2019-01-25 11:39:31 +01:00
|
|
|
export PATH=${PATH}:${IRPF90_PATH}/bin
|
|
|
|
|
|
|
|
export IRPF90=${IRPF90_PATH}/bin/irpf90
|
|
|
|
|
|
|
|
function source_if_exists() {
|
|
|
|
if [[ -f $1 ]]; then
|
|
|
|
cd $(dirname $1) ; source $(basename $1) ; cd -
|
|
|
|
fi &> /dev/null
|
2020-03-17 16:39:43 +01:00
|
|
|
}
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
source ${QP_ROOT}/etc/autocomplete.rc
|
|
|
|
source_if_exists "${IRPF90_PATH}/irpman-completions.bash"
|
2020-03-17 16:39:43 +01:00
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
|