Skip to content

Commit

Permalink
Add linux desktop launcher (#5444)
Browse files Browse the repository at this point in the history
* Add linux desktop launcher

* install -D creates leading components

* Use templates for copyright desktop postinst

* add postrm to remove native-messagin-hosts python script
  • Loading branch information
LyzardKing authored and tobiasdiez committed Oct 16, 2019
1 parent 2588a1c commit aa4585d
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 5 deletions.
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -590,8 +590,14 @@ jlink {
installerOptions = [
'--vendor', 'JabRef',
'--app-version', "${project.version}",
//'--temp', "$buildDir/installer",
'--resource-dir', "${projectDir}/buildres/linux"
// '--temp', "$buildDir/installer",
'--resource-dir', "${projectDir}/buildres/linux",
'--linux-menu-group', 'Office;',
'--linux-rpm-license-type', 'MIT',
// '--license-file', "${projectDir}/LICENSE.md",
'--file-associations', "${projectDir}/buildres/linux/desktop.properties",
'--description', 'JabRef is an open source bibliography reference manager. The native file format used by JabRef is BibTeX, the standard LaTeX bibliography format.',
'--linux-shortcut'
]
}

Expand Down
Binary file added buildres/linux/JabRef.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions buildres/linux/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/

Files: *
Copyright: APPLICATION_COPYRIGHT
License: APPLICATION_LICENSE_TEXT
1 change: 1 addition & 0 deletions buildres/linux/desktop.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mime-type=text/x-bibtex;
11 changes: 11 additions & 0 deletions buildres/linux/jabref-JabRef.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[Desktop Entry]
Name=APPLICATION_NAME
GenericName=BibTeX Editor
Comment=APPLICATION_DESCRIPTION
Exec=APPLICATION_LAUNCHER
Icon=APPLICATION_ICON
Terminal=false
Type=Application
Categories=DEPLOY_BUNDLE_CATEGORY
Keywords=bibtex;biblatex;latex;bibliography
StartupWMClass=org-jabref-JabRefMain
5 changes: 2 additions & 3 deletions buildres/linux/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@ set -e
case "$1" in
configure)
INSTALL_PATH="/usr/lib/mozilla/native-messaging-hosts/"
mkdir -p $INSTALL_PATH
\cp /opt/jabref/lib/org.jabref.jabref.json $INSTALL_PATH
chmod a+x "/opt/jabref/lib/jabrefHost.py"
install -D -m0755 /opt/jabref/lib/org.jabref.jabref.json $INSTALL_PATH
DESKTOP_COMMANDS_INSTALL
;;

abort-upgrade|abort-remove|abort-deconfigure)
Expand Down
32 changes: 32 additions & 0 deletions buildres/linux/prerm
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/sh
# postrm script for APPLICATION_PACKAGE
#
# see: dh_installdeb(1)
set -e

# summary of how this script can be called:
# * <postrm> `remove'
# * <postrm> `purge'
# * <old-postrm> `upgrade' <new-version>
# * <new-postrm> `failed-upgrade' <old-version>
# * <new-postrm> `abort-install'
# * <new-postrm> `abort-install' <old-version>
# * <new-postrm> `abort-upgrade' <old-version>
# * <disappearer's-postrm> `disappear' <overwriter>
# <overwriter-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
INSTALL_PATH="/usr/lib/mozilla/native-messaging-hosts/"
if grep --quiet '"path": "/opt' /usr/lib/mozilla/native-messaging-hosts/org.jabref.jabref.json; then
rm -D -m0755 /opt/jabref/lib/org.jabref.jabref.json $INSTALL_PATH
;;

*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac

exit 0

0 comments on commit aa4585d

Please sign in to comment.