From cc0c08b818750ad8993dff6f8fbb9884994e92a7 Mon Sep 17 00:00:00 2001 From: Natekmbowie <115597867+Natekmbowie@users.noreply.github.com> Date: Sun, 12 Mar 2023 20:53:33 -0400 Subject: [PATCH 1/2] Create Thunderbird.yml Based on the Firefox-4.yml script in https://github.com/AppImageCommunity/pkg2appimage, creates an Appimage for Thunderbird. --- recipes/Thunderbird.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes/Thunderbird.yml diff --git a/recipes/Thunderbird.yml b/recipes/Thunderbird.yml new file mode 100644 index 00000000..84b9c8a2 --- /dev/null +++ b/recipes/Thunderbird.yml @@ -0,0 +1,29 @@ +# Create an Appimage for Mozilla Thunderbird. +# To select your preferred version of Thunderbird, go to https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/ copy the link to your preferred version/language/cpu-architecture, and replace the wget link below with the one you grabbedapp: Thunderbird + +app: Thunderbird + +ingredients: + script: + - wget -c https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/102.8.0/linux-x86_64/en-US/thunderbird-102.8.0.tar.bz2 + - tar xf thunderbird-*tar.bz2 + +script: + - mv ../thunderbird/* usr/bin + - mkdir -p usr/share/applications/ + - cat > usr/share/applications/thunderbird.desktop <<\EOF + - [Desktop Entry] + - Categories=Network;Office; + - Encoding=UTF-8 + - Name=Thunderbird + - GenericName=Email + - Comment=Email RSS Chat + - Exec=thunderbird %u + - Icon=thunderbird + - Terminal=false + - StartupNotify=true + - MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;application/x-xpinstall;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp; + - Type=Application + - EOF + - cp usr/share/applications/thunderbird.desktop . + - cp usr/bin/chrome/icons/default/default256.png thunderbird.png From e219731ad8c1145a55c119ef5bcb25929bf0b3b9 Mon Sep 17 00:00:00 2001 From: Natekmbowie <115597867+Natekmbowie@users.noreply.github.com> Date: Sun, 12 Mar 2023 20:54:38 -0400 Subject: [PATCH 2/2] Update Thunderbird.yml --- recipes/Thunderbird.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/Thunderbird.yml b/recipes/Thunderbird.yml index 84b9c8a2..70f748cc 100644 --- a/recipes/Thunderbird.yml +++ b/recipes/Thunderbird.yml @@ -1,5 +1,5 @@ # Create an Appimage for Mozilla Thunderbird. -# To select your preferred version of Thunderbird, go to https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/ copy the link to your preferred version/language/cpu-architecture, and replace the wget link below with the one you grabbedapp: Thunderbird +# To select your preferred version of Thunderbird, go to https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/ copy the link to your preferred version/language/cpu-architecture, and replace the wget link below with the one you grabbed. app: Thunderbird