Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add linux desktop launcher #5444

Merged
merged 4 commits into from
Oct 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -594,8 +594,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