mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-14 16:40:48 +00:00
22 lines
419 B
Text
22 lines
419 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# @(#)postinstall $Id: postinstall,v 1.3 2006/01/21 12:54:52 coyote Exp $
|
||
|
#
|
||
|
# postinstall script for quake3
|
||
|
|
||
|
quake3_dir=$BASEDIR/quake3
|
||
|
dest_dir=${PKG_INSTALL_ROOT}/usr/local/bin
|
||
|
|
||
|
if [ -d ${dest_dir} ]; then
|
||
|
for inst_script in ioq3ded.sh ioquake3.sh
|
||
|
do
|
||
|
dest_script=${dest_dir}/${inst_script}
|
||
|
if [ ! -h ${dest_script} ]; then
|
||
|
ln -s ${quake3_dir}/${inst_script} ${dest_script}
|
||
|
fi
|
||
|
done
|
||
|
fi
|
||
|
|
||
|
exit 0
|
||
|
|