verbose wget -O "$binary" "http://beta.xonotic.org/autobuild-bin/$rev/$dpname"
[ -s "$binary" ] || rm -f "$binary"
[ -f "$binary" ]
- # TODO eventually do the rebranding on travis too.
case "$binary" in
- Xonotic/xonotic*.exe)
- verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "$binary"
- ;;
Xonotic/*osx*|Xonotic/*linux*)
chmod +x "$binary"
;;
+++ /dev/null
-#!/bin/sh
-
-d=`pwd`
-t=`mktemp -d -t change-icon-of-exe.XXXXXX`
-cp "$1" "$t/darkplaces-icon.ico"
-cp "$2" "$t/darkplaces.exe"
-cat >"$t/darkplaces.rc" <<EOF
-#include <windows.h> // include for version info constants
-
-A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "darkplaces-icon.ico"
-
-1 VERSIONINFO
-FILEVERSION 1,0,0,0
-PRODUCTVERSION 1,0,0,0
-FILETYPE VFT_APP
-{
- BLOCK "StringFileInfo"
- {
- BLOCK "040904E4"
- {
- VALUE "CompanyName", "Forest Hale Digital Services"
- VALUE "FileVersion", "1.0"
- VALUE "FileDescription", "DarkPlaces Game Engine"
- VALUE "InternalName", "darkplaces.exe"
- VALUE "LegalCopyright", "id Software, Forest Hale, and contributors"
- VALUE "LegalTrademarks", ""
- VALUE "OriginalFilename", "darkplaces.exe"
- VALUE "ProductName", "DarkPlaces"
- VALUE "ProductVersion", "1.0"
- }
- }
-}
-EOF
-cd "$t"
-wine "c:/Program Files/ResEdit/ResEdit.exe" -convert darkplaces.rc darkplaces.exe
-cd "$d"
-mv "$t/darkplaces.exe" "$2"
-rm -rf "$t"