]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Python/far-template
62a54d5a8740792897bd1ec4ff1a6201f096888c
[mirror_edk2.git] / Tools / Python / far-template
1 # This file is a template to be used in creating a Framework Archive Manifest.
2 # Each entry can be assigned to a string, which is quoted, or to a string that
3 # spans mutliple lines, which is triple quoted. Lists of strings are placed
4 # inside of square brackets.
5 # This file should be passed as a command line argument to the MkFar.py script.
6 # It is used to help the user control how the far is created.
7
8 # The filename to give the new far.
9 far.FileName = "my.far"
10
11 # The user readable name to give the far.
12 far.FarName = "My Far"
13
14 # The version of the far.
15 far.Version = "0.3"
16
17 # The license terms of the far.
18 far.License="""This program and the accompanying materials are licensed and made
19 available under the terms and conditions of the BSD License which accompanies
20 this distribution. The full text of the license may be found at
21 http://opensource.org/licenses/bsd-license.php THE PROGRAM IS DISTRIBUTED UNDER
22 THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF
23 ANY KIND, EITHER EXPRESS OR IMPLIED."""
24
25 # Short description.
26 far.Abstract = "Its a good far."
27
28 # Long description.
29 far.Description="""This Package provides headers and libraries that conform to
30 my wishes."""
31
32 # Copyright string to be placed inside the far.
33 far.Copyright="Copyright (c) 2006, My Corporation."
34
35 # A list of workspace-relative paths to the .spd files that should be
36 # placed inside this far.
37 far.SpdFiles=[]
38
39 # A list of workspace-relative paths to the .fpd files that should be
40 # placed inside this far.
41 far.FpdFiles=[]
42
43 # A list of workspace-relative paths to the extra files that should be
44 # placed inside this far. Extra files are ones that are not part of
45 # an spd or msa or fpd.
46 far.ExtraFiles=["tools_def_for_this_package.template", "setup.sh"]
47
48 # vim:syntax=python