wok view dev86/stuff/com2exe @ rev 16888

libQtSql: what if to add BUILD_DEPENDS line, let full Qt cooking will be after update
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Mon Jul 14 02:44:23 2014 +0000 (2014-07-14)
parents a13a6c5b176e
children 12326fc2d995
line source
1 #!/bin/sh
3 [ ! -s "$1" ] && echo "Usage: $0 file.com [extra_ss]> file.exe" && exit 1
4 S=$((32+$(stat -c %s $1)))
5 P=$((($S+511)/512))
6 E=$((4096-(32*$P)))
7 for i in 0x5A4D $(($S%512)) $P 0 2 $E $E $((${2:-0}-16)) -2 0 256 -16 28 0 0 0
8 do printf '\\\\x%02X\\\\x%02X' $(($i&255)) $((($i>>8)&255)) | xargs echo -en
9 done
10 cat $1