- install wrapper script in a plist safe way - Mark IGNORE on platforms != i386 (dumps core) PR: ports/78686 Approved by: portmgr (marcus), arved (mentor) Perdo F. Giffuni (maintainer)
11 lines
315 B
Bash
11 lines
315 B
Bash
#!/bin/sh
|
|
# This is pretty lame for the time being, but it serves as a reminder
|
|
# to set correctly your environment before attempting to run BRL CAD.
|
|
|
|
BRLCAD_ROOT=%%BRLCAD_ROOT%%
|
|
|
|
export BRLCAD_ROOT
|
|
export PATH=%%BRLCAD_ROOT%%/bin:$PATH
|
|
export MANPATH=%%BRLCAD_ROOT%%/man:$MANPATH
|
|
|
|
exec %%BRLCAD_ROOT%%/bin/mged $@
|