mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-09 05:31:05 +08:00

partial builds, where only a subset of OpenVPN installer components are built. See ./domake-win comments. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2710 e7ae566f-a301-0410-adde-c780ea21d3b5
23 lines
498 B
Bash
23 lines
498 B
Bash
#!/bin/sh
|
|
|
|
# load version.nsi definitions
|
|
. autodefs/defs.sh
|
|
|
|
# build the installer
|
|
cd install-win32
|
|
rm -f *.exe
|
|
'/c/Program Files/NSIS/makensis' openvpn.nsi &>makensis.log
|
|
tail -20 makensis.log
|
|
|
|
# copy the installer to GENOUT/install
|
|
ls openvpn*.exe 2>/dev/null || exit 1
|
|
i=`ls -t openvpn*.exe | head -n 1`
|
|
cd ..
|
|
mkdir $GENOUT/install &>/dev/null
|
|
cp install-win32/$i $GENOUT/install
|
|
|
|
# sign the installer
|
|
if [ -d "$SIGNTOOL" ]; then
|
|
TARGET_EXE="$(pwd)/$GENOUT/install/$i" $SIGNTOOL/signexe
|
|
fi
|