https://github.com/teuben/nemo
Revision 27d447ea1e0c092be8e577a3569a022c11e2c3bc authored by Peter Teuben on 07 April 2021, 03:16:34 UTC, committed by Peter Teuben on 07 April 2021, 03:16:34 UTC
1 parent 6692e35
Raw File
Tip revision: 27d447ea1e0c092be8e577a3569a022c11e2c3bc authored by Peter Teuben on 07 April 2021, 03:16:34 UTC
dynamic loader should be simpler (i5-11x?) clang
Tip revision: 27d447e
nemo.pl.in
#! /usr/bin/perl
#
#  this is a section of perl code to setup perl (e.g. cgi-bin) scripts
#  to know the absolute location of NEMO and define all needed variables
# 
#  CAVEAT:  if you relocate the NEMO directory tree, you will need to 
#	    edit this file (or re-install in the new location)
#
#

$nemop1 ="@NEMO@";
$ENV{'NEMO'}="$nemop1";
$nemo_path = "${nemop1}/bin/";

$ENV{'PATH'} = "/usr/bin:/bin:${nemo_path}";   #Needed?
$ENV{'NEMOOBJ'}= "${nemop1}/obj";
$ENV{'NEMOLIB'}= "${nemop1}/lib";
$ENV{'NEMOINC'}= "${nemop1}/inc";
$ENV{'NEMODAT'}= "${nemop1}/data";

$ENV{'BTRPATH'}= "${nemop1}/obj/bodytrans";
$ENV{'POTPATH'}= "${nemop1}/obj/potential";

## $ENV{'PGPLOT_FONT'} = "/usr/local/astromake/opt/pgplot/grfont.dat";
## $ENV{'LD_LIBRARY_PATH'} = "${nemop1}/lib/:/usr/local/astromake/opt/pgplot";$ENV{'PGPLOT_BACKGROUND'} = "white";$ENV{'PGPLOT_FOREGROUND'} = "black";


back to top