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

Added Thunderbird.yml Recipe #539

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
29 changes: 29 additions & 0 deletions recipes/Thunderbird.yml
Original file line number Diff line number Diff line change
@@ -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 grabbed.

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