mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
18 lines
489 B
Bash
Executable File
18 lines
489 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ -e panda-standalone.zip ]; then
|
|
echo panda-standalone.zip already exists!
|
|
exit 1
|
|
fi
|
|
|
|
for dir in $DTOOL $PANDA $DIRECT $PANDATOOL; do
|
|
zip -j panda-standalone.zip $dir/lib/*.dll $dir/bin/*.exe || exit
|
|
done
|
|
zip -j panda-standalone.zip $WINTOOLS/lib/*.dll $WINTOOLS/sdk/python/Python-2.2.2/PCbuild/*.dll || exit
|
|
|
|
cp $DIRECT/src/directscripts/standalone-Configrc /tmp/Configrc || exit
|
|
zip -j -m panda-standalone.zip /tmp/Configrc || exit
|
|
|
|
echo Success!
|
|
|