File: buildinstaller

package info (click to toggle)
openvpn 2.1~rc11-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,556 kB
  • ctags: 5,488
  • sloc: ansic: 54,327; sh: 5,076; makefile: 294; perl: 234
file content (22 lines) | stat: -rw-r--r-- 498 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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