[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

StarOffice install script (No Motif)



Download the staroffice package into some directory and put the following
script there. Run it as superuser and Staroffice will install without
Motif libraries:

starinst:
#!/bin/sh
# Prepare Star Office for Non Motif installation

mkdir temp
cd temp
# Extract Libraries needed for installation
unzip ../disk.01-1 libxp3so.0/libxp3.so
unzip ../disk.01-2 libso312.0/libso312.so libtools.1/libtools312.so
unzip ../disk.01-4 libsv312.1/libsv312.so
unzip ../disk.01-5 libsvt31.0/libsvt312.so

# Copy them over to /usr/local/lib
find . -type f -exec cp {} /usr/local/lib \;
cd ..
rm -rf temp

# Link Needed
ln -s libso312.so /usr/local/lib/libXm.so.2
ldconfig
# Make install executable if not yet
chmod a+x install

# Startup installation
exec ./install



Reply to: