You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
8 years ago
|
#!/bin/sh
|
||
|
# Copyright (c) 2014-2015 The Bitcoin Core developers
|
||
|
# Distributed under the MIT software license, see the accompanying
|
||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
||
|
if [ -z "$OSSLSIGNCODE" ]; then
|
||
|
OSSLSIGNCODE=osslsigncode
|
||
|
fi
|
||
|
|
||
|
if [ ! -n "$1" ]; then
|
||
|
echo "usage: $0 <osslcodesign args>"
|
||
|
echo "example: $0 -key codesign.key"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
OUT=signature-win.tar.gz
|
||
|
SRCDIR=unsigned
|
||
|
WORKDIR=./.tmp
|
||
|
OUTDIR="${WORKDIR}/out"
|
||
|
OUTSUBDIR="${OUTDIR}/win"
|
||
|
TIMESERVER=http://timestamp.comodoca.com
|
||
|
CERTFILE="win-codesign.cert"
|
||
|
|
||
|
mkdir -p "${OUTSUBDIR}"
|
||
|
basename -a `ls -1 "${SRCDIR}"/*-unsigned.exe` | while read UNSIGNED; do
|
||
|
echo Signing "${UNSIGNED}"
|
||
|
"${OSSLSIGNCODE}" sign -certs "${CERTFILE}" -t "${TIMESERVER}" -in "${SRCDIR}/${UNSIGNED}" -out "${WORKDIR}/${UNSIGNED}" "$@"
|
||
|
"${OSSLSIGNCODE}" extract-signature -pem -in "${WORKDIR}/${UNSIGNED}" -out "${OUTSUBDIR}/${UNSIGNED}.pem" && rm "${WORKDIR}/${UNSIGNED}"
|
||
|
done
|
||
|
|
||
|
rm -f "${OUT}"
|
||
|
tar -C "${OUTDIR}" -czf "${OUT}" .
|
||
|
rm -rf "${WORKDIR}"
|
||
|
echo "Created ${OUT}"
|