added windows build/release scripts
This commit is contained in:
65
release/distwin.sh
Executable file
65
release/distwin.sh
Executable file
@ -0,0 +1,65 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -z "$1" ] ; then
|
||||
echo "Usage: $0 <version> <certpassword>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
VERSION=$1
|
||||
|
||||
CERTPASS=$2
|
||||
|
||||
BASENAME="PaulXStretch"
|
||||
|
||||
if [ -z "$CERTFILE" ] ; then
|
||||
echo You need to define CERTFILE env variable to sign anything
|
||||
exit 2
|
||||
fi
|
||||
|
||||
BUILDDIR='../Builds/VisualStudio2019/x64/Release'
|
||||
BUILDDIR32='../Builds/VisualStudio2019/Win32/Release32'
|
||||
|
||||
mkdir -p ${BASENAME}/Plugins
|
||||
|
||||
#cp -v ../doc/README_WINDOWS.txt SonoBus/README.txt
|
||||
cp -v ${BUILDDIR}/Standalone\ Plugin/${BASENAME}.exe ${BASENAME}/
|
||||
cp -v ${BUILDDIR}/VST3/${BASENAME}.vst3 ${BASENAME}/Plugins/
|
||||
#cp -v ${BUILDDIR}/VST/SonoBus.dll ${BASENAME}/Plugins/
|
||||
#cp -pHLRv ${BUILDDIR}/AAX/SonoBus.aaxplugin ${BASENAME}/Plugins/
|
||||
|
||||
|
||||
#mkdir -p SonoBus/Plugins32
|
||||
|
||||
#cp -v ${BUILDDIR32}/Standalone\ Plugin/SonoBus.exe SonoBus/SonoBus32.exe
|
||||
#cp -v ${BUILDDIR32}/VST3/SonoBus.vst3 SonoBus/Plugins32/
|
||||
#cp -v ${BUILDDIR32}/VST/SonoBus.dll SonoBus/Plugins32/
|
||||
##cp -pHLRv ${BUILDDIR}/AAX/SonoBus.aaxplugin SonoBus/Plugins32/
|
||||
|
||||
|
||||
# sign AAX
|
||||
#if [ -n "${AAXSIGNCMD}" ]; then
|
||||
# echo "Signing AAX plugin"
|
||||
# ${AAXSIGNCMD} --keypassword "${CERTPASS}" --in 'SonoBus\Plugins\Sonobus.aaxplugin' --out 'SonoBus\Plugins\Sonobus.aaxplugin'
|
||||
#fi
|
||||
|
||||
|
||||
# sign executable
|
||||
#signtool.exe sign /v /t "http://timestamp.digicert.com" /f "$CERTFILE" /p "$CERTPASS" SonoBus/SonoBus.exe
|
||||
|
||||
mkdir -p instoutput
|
||||
rm -f instoutput/*
|
||||
|
||||
|
||||
iscc /O"instoutput" "/Ssigntool=signtool.exe sign /t http://timestamp.digicert.com /f ${CERTFILE} /p ${CERTPASS} \$f" /DSBVERSION="${VERSION}" wininstaller.iss
|
||||
|
||||
#signtool.exe sign /v /t "http://timestamp.digicert.com" /f SonosaurusCodeSigningSectigoCert.p12 /p "$CERTPASS" instoutput/
|
||||
|
||||
#ZIPFILE=sonobus-${VERSION}-win.zip
|
||||
#cp -v ../doc/README_WINDOWS.txt instoutput/README.txt
|
||||
#rm -f ${ZIPFILE}
|
||||
#(cd instoutput; zip ../${ZIPFILE} SonoBus\ Installer.exe README.txt )
|
||||
|
||||
EXEFILE=paulxstretch-${VERSION}-win.exe
|
||||
rm -f ${EXEFILE}
|
||||
cp instoutput/${BASENAME}-${VERSION}-Installer.exe ${EXEFILE}
|
||||
|
Reference in New Issue
Block a user