10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-09-27 12:00:56 +02:00
quantum_package/etc/irpf90.rc

20 lines
432 B
Plaintext
Raw Normal View History

2019-01-09 11:31:59 +01:00
# Configuration of IRPF90 package
2019-01-13 14:22:10 +01:00
# Set the path of IRPF90 here:
export IRPF90_PATH=${QP_ROOT}/external/irpf90-v1.7.4
export PATH=${PATH}:${IRPF90_PATH}/bin
2019-01-08 23:48:59 +01:00
2019-01-13 14:22:10 +01:00
export IRPF90=${IRPF90_PATH}/bin/irpf90
function source_if_exists() {
if [[ -f $1 ]]; then
2019-01-14 22:37:24 +01:00
cd $(dirname $1) ; source $(basename $1) ; cd -
fi &> /dev/null
2019-01-13 14:22:10 +01:00
}
2019-01-14 22:37:24 +01:00
2019-01-14 15:20:51 +01:00
source ${QP_ROOT}/etc/autocomplete.rc
2019-01-13 14:22:10 +01:00
source_if_exists "${IRPF90_PATH}/irpman-completions.bash"
2019-01-08 23:48:59 +01:00
2019-01-09 11:55:34 +01:00