diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-03-14 22:26:35 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-03-14 22:26:35 +0000 |
commit | b7329b5d163d10c7daba4770cbd0f280ddda1371 (patch) | |
tree | 19644c017f16a4d3ca29c76c37d50f2aaf00f99e /code/unix/setup/pkg/ioquake3/postinstall | |
parent | c5a683d32fa9906e1d63e0fddf20ca7f25cc1a20 (diff) | |
download | ioquake3-aero-b7329b5d163d10c7daba4770cbd0f280ddda1371.tar.gz ioquake3-aero-b7329b5d163d10c7daba4770cbd0f280ddda1371.zip |
* Solaris package patch
git-svn-id: svn://svn.icculus.org/quake3/trunk@643 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/unix/setup/pkg/ioquake3/postinstall')
-rw-r--r-- | code/unix/setup/pkg/ioquake3/postinstall | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/code/unix/setup/pkg/ioquake3/postinstall b/code/unix/setup/pkg/ioquake3/postinstall new file mode 100644 index 0000000..2775d5e --- /dev/null +++ b/code/unix/setup/pkg/ioquake3/postinstall @@ -0,0 +1,21 @@ +#!/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 + |