Hi,
I imagine you heard all of this before, but I couldn’t find a solution and I really search before I post.
I using openSuse 10,3 and I’m trying to install shake 4. I put the folders on the /usr/apple/ and the shake file in on the /usr/apple/bin.
Here is the error when i try to run it:
mbandeira@linux-09eb:/usr/apple/bin> ./shake
if ${?NR_SHAKE_LOCATION} == /usr/apple/bin’
Usage: csh [ -bcdefilmnqstvVxX ] [ argument … ].
and here is the file shake:
#!/bin/csh -f
#set env var, NR_SHAKE_LOCATION if not set
#!/usr/apple/bin
if ${?NR_SHAKE_LOCATION} == /usr/apple/bin then
pushd dirname $0 >& /dev/null
setenv NR_SHAKE_LOCATION dirname ${cwd};
popd >& /dev/null
endif
set env var, LD_LIBRARYN32_PATH
if ${?LD_LIBRARYN32_PATH} then
setenv LD_LIBRARYN32_PATH ${NR_SHAKE_LOCATION}/lib:${LD_LIBRARYN32_PATH};
#else
#setenv LD_LIBRARYN32_PATH ${NR_SHAKE_LOCATION}/lib;
endif
set env var, LD_LIBRARY_PATH
if ${?LD_LIBRARY_PATH} then
setenv LD_LIBRARY_PATH /usr/lib:${NR_SHAKE_LOCATION}/lib:${NR_SHAKE_LOCATION}/lib/mesa:${LD_LIBRARY_PATH};
#else
setenv LD_LIBRARY_PATH /usr/lib:${NR_SHAKE_LOCATION}/lib:${NR_SHAKE_LOCATION}/lib/mesa;
endif
launch shake
exec ${NR_SHAKE_LOCATION}/bin/shkx.exe $argv:q;
echo NR_SHAKE_LOCATION = ${NR_SHAKE_LOCATION};
echo LD_LIBRARYN32_PATH = ${LD_LIBRARYN32_PATH};
echo LD_LIBRARY_PATH = ${LD_LIBRARY_PATH};
I don’t know if the files are in the right place and waht else to do, this is what I got from other foruns I found on the net.
Can someone give me a help, I feel I’m close!!
Thnaks
mb