Merge branch 'master' of ssh://moonshot-v4/srv/git/moonshot-ui
[moonshot-ui.git] / mac / moonshot-ui.bundle
1 <?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
2 <app-bundle>
3
4   <meta>
5     <!-- Where to pick up the GTK+ installation, icon themes,
6          etc. Note that "${env:JHBUILD_PREFIX}" is evaluated to the
7          value of the environment variable JHBUILD_PREFIX. You can
8          define additional prefixes and refer to them in paths
9          throughout this file on the form "${prefix:name}". This is
10          useful for installing certain libraries or even the
11          application itself separately. Note that JHBUILD_PREFIX is
12          defined by jhbuild, so it you are not using jhbuild you can
13          either define your own or just hardcode the path here.
14     -->
15       <prefix name="default">${env:JHBUILD_PREFIX}</prefix>
16       <prefix name="installer-dir">${env:HOME}/moonshot/mac-client-installer/moonshot-ui/</prefix>
17
18     <!-- The project directory is the default location of the created
19          app. If you leave out the path, the current directory is
20          used. Note the usage of an environment variable here again.
21     -->
22     <destination overwrite="yes">${prefix:installer-dir}</destination>
23
24     <image>
25       <!-- Not implemented yet (DMG image). -->
26     </image>
27
28     <!-- Comment this out to keep the install names in binaries -->
29     <!--<run-install-name-tool/>-->
30  
31     <!-- Optionally specify a launcher script to use. If the
32          application sets up everything needed itself, like
33          environment variable, linker paths, etc, a launcher script is
34          not needed. If the source path is left out, the default
35          script will be used.
36     -->
37     <launcher-script>${project}/launcher.sh</launcher-script >
38
39     <!-- Indicate the active gtk version to use. This is needed only
40          for gtk+-3.0 projects. -->
41     <gtk>gtk+-2.0</gtk>
42   </meta>
43
44   <!-- The special macro "${project}" refers to the directory where
45        this bundle file is located. The application name and bundle
46        identifier are taken from the plist file.
47   -->
48   <plist>${project}/moonshot-ui.plist</plist>
49
50     <main-binary>${prefix:installer-dir}bin/moonshot</main-binary>
51
52   <!-- Copy in GTK+ modules.  Note the ${gtkdir} macro, which expands
53        to the correct library subdirectory for the specified gtk
54        version.
55   -->
56   <binary>
57      ${prefix}/lib/${gtkdir}/modules/*.so
58   </binary>
59
60   <!-- Copy in GTK+ theme engines and print backends. Note the use of the
61        "${pkg:module:variable}" macro, which evaluates to a pkg-config
62        variable in the specified module. Note that any libraries that
63        binaries link to are also copied in automatically.  Note also
64        the included ${gtk} macro, which gets the correct package name
65        to get. -->
66   <binary>
67     ${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/engines/*.so
68   </binary>
69   <binary>
70     ${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/printbackends/*.so
71   </binary>
72
73 <!-- Starting with 2.24, gdk-pixbuf installs into its own directory. -->
74   <binary>
75     ${prefix}/lib/gdk-pixbuf-2.0/${pkg:${gtk}:gtk_binary_version}/*.so
76   </binary>
77
78   <!-- Translation filenames, one for each program or library that you
79        want to copy in to the bundle. The "dest" attribute is
80        optional, as usual. Bundler will find all translations of that
81        library/program under the indicated directory and copy them.-->
82   <translations name="gtk20">
83     ${prefix}/share/locale
84   </translations>
85
86
87   <!-- Data to copy in, usually Glade/UI files, images, sounds files
88        etc. The destination inside the bundle can be specified if the
89        files should end up at a different location, by using the
90        "dest" property. The destination must then start with the macro
91        "${bundle}", which refers to the bundle root directory.
92   -->
93   <!-- data>
94     ${prefix}/share/moonshot-ui
95   </data -->
96
97   <!-- Copy in the themes data. You may want to trim this to save space
98        in your bundle. -->
99   <data>
100     ${prefix}/share/themes
101   </data>
102
103   <!-- Copy icons. Note that the .icns file is an Apple format which
104        contains up to 4 sizes of icon. You can use
105        /Developer/Applications/Utilities/Icon Composer.app to import
106        artwork and create the file. >
107   <data dest="${bundle}/Contents/Resources">
108     ${project}/Giggle.icns
109   </data -->
110
111   <!-- This is where theme commands go. You can copy them in from your
112        theme of choice if they provide and example, or you can just
113        change the source path. -->
114
115   <data dest="${bundle}/Contents/Resources/etc/${gtkdir}/gtkrc">
116     ${project}/gtkrc
117   </data>
118
119   <!-- Icon themes to copy. The "icons" property can be either of
120        "auto", "all", or "none". All or none should be
121        self-explanatory, while auto means that the script will try to
122        figure out which icons are needed. This is done by getting all
123        the strings from all copied binaries, and matching them against
124        icon names. To be safe, you should use "all". "none" is useful
125        if you want just the index.theme file but no icons, mostly
126        needed for the "hicolor" base theme.
127   >-->
128   <icon-theme icons="all">
129     Tango
130   </icon-theme>
131
132 </app-bundle>