Teaspeak-Server/server/repro/package_server.sh

37 lines
906 B
Bash
Raw Normal View History

#!/usr/bin/env bash
BUILD_INFO=($(cat build_version.txt))
BUILD_FULL_NAME=${BUILD_INFO[0]}
BUILD_NAME=${BUILD_INFO[1]}
BUILD_VERSION=${BUILD_INFO[2]}
BUILD_FILENAME=${BUILD_INFO[3]}
echo "Creating TeaSpeak ${BUILD_NAME} Build index ${BUILD_VERSION}"
2019-11-11 15:37:28 -05:00
if [[ -d finalenv ]]; then
rm -r finalenv
fi
cp -r env finalenv
2019-11-11 15:37:28 -05:00
cd finalenv || {
echo "failed to enter dir"
exit 1
}
echo -e "# Version: ${BUILD_FULL_NAME}
# TeaSpeak version: ${BUILD_NAME}
# Build version: ${BUILD_VERSION}
2020-01-24 13:39:43 -05:00
{\"build_name\": \"${BUILD_FULL_NAME}\", \"build_version\": \"${BUILD_NAME}\", \"build_index\": ${BUILD_VERSION}}" > buildVersion.txt
#Create a copy and save unstripped
cp TeaSpeakServer TeaSpeakServerTmp
rm TeaSpeakServer
mv TeaSpeakServerTmp TeaSpeakServer
strip -s -p -v TeaSpeakServer
tar --dereference -czvf "../${BUILD_FILENAME}" *
cd ..
2019-11-22 15:47:16 -05:00
rm -r finalenv
./make_symbol.sh
echo "Package created (${BUILD_FILENAME})"