mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
23 lines
490 B
Bash
Executable file
23 lines
490 B
Bash
Executable file
#!/bin/bash
|
|
# create pak files with gzipped internals
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "usage: $0 <pakfile> ..."
|
|
exit 1
|
|
fi
|
|
|
|
for pakfile in $*; do
|
|
if [ ! -f ${pakfile} ]; then echo ${pakfile} not found; continue; fi
|
|
[ "${pakfile#/}" = "${pakfile}" ] && pakfile=`pwd`/${pakfile}
|
|
|
|
tmp=/var/tmp/zpak.$$
|
|
|
|
mkdir ${tmp}
|
|
cd ${tmp}
|
|
pak -vx ${pakfile} | sed -e 's/$/.gz/' > pakfile.lst
|
|
mv ${pakfile} ${pakfile}.bak
|
|
gzip -rv9 *
|
|
pak -vc ${pakfile} `zcat pakfile.lst.gz`
|
|
cd -
|
|
rm -rf ${tmp}
|
|
done
|