#!/bin/sh # # Copyright (C) 2001-2019 Graeme Walker # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # === # # make-manifest.sh # # Creates a windows manifest file, typically for a mingw build where # the linker does not support /MANIFEST etc. # # usage: make-manifest.sh [ [ [ []]]] # level := {asInvoker|highestAvailable|requireAdministrator} # # See also: # * https://msdn.microsoft.com/en-us/library/bb756929.aspx # * https://msdn.microsoft.com/en-us/library/aa374191.aspx # level="$1" name="$2" description="$3" version="$4" if test "$level" = "" ; then level="asInvoker" ; fi if test "$version" = "" ; then version="1.0.0.0" ; fi Manifest() { _level="$1" _name="$2" _description="$3" _version="$4" cat < EOF if test "$_name" != "" then cat < EOF fi if test "$_description" != "" then cat <$_description EOF fi if test "$_level" != "" then cat < EOF fi cat < EOF } Manifest "$level" "$name" "$description" "$version" | sed 's/$/\r/'