1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# External (non core-system) packages. To install a new package, add the
# two statements to define the package root directory and package task,
# then add the package helpdb to the `helpdb' list.
reset extern = iraf$extern/
# Initialize the helpdb string. We'll add to this when dyanamically
# loading packages when the next load the CLPACKAGE.
reset helpdb = "lib$helpdb.mip"
reset aproposdb = "lib$apropos.db"
if (access ("pkg$softools/softools.cl") == yes) {
reset softools = pkg$softools/
task softools.pkg = softools$softools.cl
}
;
if (access ("iraf$noao/noao.cl") == yes) {
reset noao = iraf$noao/
task noao.pkg = noao$noao.cl
reset helpdb = (envget("helpdb") // ",noao$lib/helpdb.mip")
reset aproposdb = (envget("aproposdb") + ",noao$lib/apropos.db" )
}
;
if (access ("iraf$vo/vo.cl") == yes) {
reset vo = iraf$vo/
task vo.pkg = vo$vo.cl
reset helpdb = (envget("helpdb") // ",vo$lib/helpdb.mip")
}
;
#reset local = iraf$local/
#task local.pkg = local$local.cl
#reset helpdb = (envget("helpdb") // ",local$lib/helpdb.mip")
# Manually defined external packages. Packages installed in the iraf$extern
# directory will be loaded dynamically, other packages may be defined here
# if for some reason they are non-standard and cannot be loaded dynamically.
#
# Package definitions have the form:
#
# reset example = extern$example/ <--- must have trailing '/'
# task example.pkg = example$example.cl
# reset helpdb = (envget("helpdb") // ",example$lib/helpdb.mip")
# Do not modify below this line!
clpackage
keep
|