blob: 1b0a119322e279a3548745a74dcb59e85f304f26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
if [ -z "$BNS_CERT" ]
then
die "$0: Please set BNS_CERT to the bns signing certificate for windows"
fi
if [ -z "$BNS_CERT_PASS" ]
then
die "$0: Please set BNS_CERT_PASS to the password for the $BNS_CERT signing key"
fi
which osslsigncode > /dev/null
if [ $? -ne 0 ]
then
echo "Installing osslsigncode"
brew install osslsigncode || die "Could not install osslsigncode"
fi
osslsigncode sign -pkcs12 "$BNS_CERT" -pass "$BNS_CERT_PASS" -in dll/systray_unsigned.dll -out dll/systray.dll || die "Could not sign windows dll"
|