You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.5 KiB
81 lines
2.5 KiB
<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*--> |
|
<app-bundle> |
|
|
|
<meta> |
|
<prefix name="default">${env:GTKDIR}</prefix> |
|
<destination overwrite="yes">.</destination> |
|
|
|
<!-- Comment this out to keep the install names in binaries --> |
|
<run-install-name-tool/> |
|
|
|
<!-- Optionally specify a launcher script to use. If the |
|
application sets up everything needed itself, like |
|
environment variable, linker paths, etc, a launcher script is |
|
not needed. If the source path is left out, the default |
|
script will be used. |
|
--> |
|
<launcher-script></launcher-script > |
|
|
|
<gtk>gtk+-3.0</gtk> |
|
</meta> |
|
|
|
<plist>${project}/Info.plist</plist> |
|
|
|
<main-binary>${prefix}/bin/xournalpp</main-binary> |
|
|
|
<!-- Copy in the input methods. Dunno if they actually work with |
|
OSX. Note the ${gtkdir} macro, which expands to the correct |
|
library subdirectory for the specified gtk version. --> |
|
<binary> |
|
${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/immodules/*.so |
|
</binary> |
|
|
|
<!-- And the print backends --> |
|
<binary> |
|
${prefix}/lib/${gtkdir}/${pkg:${gtk}:gtk_binary_version}/printbackends/*.so |
|
</binary> |
|
|
|
<!-- Starting with 2.24, gdk-pixbuf installs into its own directory. --> |
|
<binary> |
|
${prefix}/lib/gdk-pixbuf-2.0/${pkg:gdk-pixbuf-2.0:gdk_pixbuf_binary_version}/loaders/*.so |
|
</binary> |
|
|
|
<!-- Poppler --> |
|
<binary> |
|
${prefix}/lib/libpoppler-glib*.dynlib |
|
</binary> |
|
|
|
<!-- Translation filenames, one for each program or library that you |
|
want to copy in to the bundle. The "dest" attribute is |
|
optional, as usual. Bundler will find all translations of that |
|
library/program under the indicated directory and copy them.--> |
|
<translations name="gtk30"> |
|
${prefix}/share/locale |
|
</translations> |
|
|
|
|
|
<!-- Data to copy in, usually Glade/UI files, images, sounds files |
|
etc. The destination inside the bundle can be specified if the |
|
files should end up at a different location, by using the |
|
"dest" property. The destination must then start with the macro |
|
"${bundle}", which refers to the bundle root directory. |
|
--> |
|
<!-- data> |
|
${prefix}/share/gtk3-demo |
|
</data --> |
|
|
|
<!-- Copy in the themes data. You may want to trim this to save space |
|
in your bundle. --> |
|
<data> |
|
${prefix}/share/themes |
|
</data> |
|
|
|
<data> |
|
${prefix}/share/icons |
|
</data> |
|
|
|
<data dest="${bundle}/Contents/Resources"> |
|
${project}/icon/xournalpp.icns |
|
</data> |
|
|
|
</app-bundle>
|
|
|