Bump the version number in configure.ac to 1.0.5
[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           <prefix name="dbus-source-dir">${env:HOME}/gtk/source/dbus-1.4.16/</prefix>
18
19     <!-- The project directory is the default location of the created
20          app. If you leave out the path, the current directory is
21          used. Note the usage of an environment variable here again.
22     -->
23     <destination overwrite="yes">${prefix:installer-dir}</destination>
24
25     <image>
26       <!-- Not implemented yet (DMG image). -->
27     </image>
28
29     <!-- Comment this out to keep the install names in binaries -->
30     <!--<run-install-name-tool/>-->
31  
32     <!-- Optionally specify a launcher script to use. If the
33          application sets up everything needed itself, like
34          environment variable, linker paths, etc, a launcher script is
35          not needed. If the source path is left out, the default
36          script will be used.
37     -->
38     <launcher-script>${project}/launcher.sh</launcher-script >
39
40     <!-- Indicate the active gtk version to use. This is needed only
41          for gtk+-3.0 projects. -->
42     <gtk>gtk+-2.0</gtk>
43   </meta>
44
45   <!-- The special macro "${project}" refers to the directory where
46        this bundle file is located. The application name and bundle
47        identifier are taken from the plist file.
48   -->
49   <plist>${project}/moonshot-ui.plist</plist>
50
51  <!--   <main-binary>${prefix:installer-dir}bin/moonshot</main-binary>-->
52     <main-binary>${prefix}/bin/moonshot</main-binary>
53
54   <!-- Copy in GTK+ modules.  Note the ${gtkdir} macro, which expands
55        to the correct library subdirectory for the specified gtk
56        version.
57   -->
58   <binary>
59      ${prefix}/lib/${gtkdir}/modules/*.so
60   </binary>
61
62   <!-- Copy in GTK+ theme engines and print backends. Note the use of the
63        "${pkg:module:variable}" macro, which evaluates to a pkg-config
64        variable in the specified module. Note that any libraries that
65        binaries link to are also copied in automatically.  Note also
66        the included ${gtk} macro, which gets the correct package name
67        to get. -->
68   <binary>
69     ${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/engines/*.so
70   </binary>
71   <binary>
72     ${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/printbackends/*.so
73   </binary>
74
75 <!-- Starting with 2.24, gdk-pixbuf installs into its own directory. -->
76   <binary>
77     ${prefix}/lib/gdk-pixbuf-2.0/${pkg:${gtk}:gtk_binary_version}/*.so
78   </binary>
79
80 <!-- DBUS -->
81         <binary>${prefix}/bin/dbus-*</binary>
82         <!-- org.janet.Moonshot.service -->
83         <data>${prefix}/share/dbus-1</data>
84         <binary>${prefix}/libexec/dbus-daemon-launch-helper</binary>
85         <data dest="${bundle}/Contents/Resources/etc/dbus-1/session.d/">${prefix:dbus-source-dir}/test/data/valid-config-files/session.d/</data> 
86         <!-- session.conf: we're not shipping system.conf -->
87         <data dest="${bundle}/Contents/Resources/etc/dbus-1/session.conf">${prefix:dbus-source-dir}/bus/session.conf</data>
88         
89         
90   <!-- Translation filenames, one for each program or library that you
91        want to copy in to the bundle. The "dest" attribute is
92        optional, as usual. Bundler will find all translations of that
93        library/program under the indicated directory and copy them.-->
94   <translations name="gtk20">
95     ${prefix}/share/locale
96   </translations>
97
98   <!-- Data to copy in, usually Glade/UI files, images, sounds files
99        etc. The destination inside the bundle can be specified if the
100        files should end up at a different location, by using the
101        "dest" property. The destination must then start with the macro
102        "${bundle}", which refers to the bundle root directory.
103   -->
104   <!-- data>
105     ${prefix}/share/moonshot-ui
106   </data -->
107
108   <!-- Copy in the themes data. You may want to trim this to save space
109        in your bundle. -->
110         <data>${prefix}/share/themes/Default</data>
111
112         <!-- App icon -->
113         <data dest="${bundle}/Contents/Resources">${project}/moonshot-ui.icns</data>
114
115   <!-- This is where theme commands go. You can copy them in from your
116        theme of choice if they provide and example, or you can just
117        change the source path. -->
118
119   <data dest="${bundle}/Contents/Resources/etc/${gtkdir}/gtkrc">
120     ${project}/gtkrc
121   </data>
122
123   <!-- Icon themes to copy. The "icons" property can be either of
124        "auto", "all", or "none". All or none should be
125        self-explanatory, while auto means that the script will try to
126        figure out which icons are needed. This is done by getting all
127        the strings from all copied binaries, and matching them against
128        icon names. To be safe, you should use "all". "none" is useful
129        if you want just the index.theme file but no icons, mostly
130        needed for the "hicolor" base theme.
131   >-->
132   <icon-theme icons="all">
133     Tango
134   </icon-theme>
135
136 </app-bundle>