Package adopted and updated to version 1.6.1.
@galvez_65 Great suggestion switching to DEB, I added you as contributor.
Git Clone URL: | https://aur.archlinux.org/zoho-mail-desktop.git (read-only, click to copy) |
---|---|
Package Base: | zoho-mail-desktop |
Description: | Lite desktop version of Zoho email client. |
Upstream URL: | https://www.zoho.com/mail/desktop |
Keywords: | email zoho |
Licenses: | custom |
Submitter: | dukex |
Maintainer: | AlfredoRamos (galvez_65) |
Last Packager: | galvez_65 |
Votes: | 10 |
Popularity: | 0.001310 |
First Submitted: | 2018-04-22 00:37 (UTC) |
Last Updated: | 2024-10-09 23:57 (UTC) |
Package adopted and updated to version 1.6.1.
@galvez_65 Great suggestion switching to DEB, I added you as contributor.
I switched the source from the appimage to the deb and significantly simplified the PKGBUILD file. I'm including it here if anyone is interested.
# Maintainer: Sabu Siyad <hello@ssiyad.com>
# This PKGBUILD is maintained at https://github.com/ssiyad/pkgbuilds/
# Past Maintainer: Hunter Wittenborn <hunter@hunterwittenborn.me>
# Past Maintainer: Emerson Almeida <duke.m16@gmail.com>
# Past Contributor: Emerson Almeida <duke.m16@gmail.com>
pkgname=zoho-mail-desktop
pkgver=1.6.0
pkgrel=2
pkgdesc="The desktop version of your favorite mailsuite!"
arch=('x86_64')
license=('custom')
url="https://www.zoho.com/mail/desktop"
_zohocdn="https://downloads.zohocdn.com/zmail-desktop/linux"
source=("${_zohocdn}/${pkgname}-lite-installer-x64-v${pkgver}.deb")
sha256sums=('20649a723f93814185440998ebfe7f8e1d2f7530e4475b23aa43d7f487e40458')
package() {
bsdtar -xf data.tar.xz -C $pkgdir
install -dm 755 ${pkgdir}/usr/bin
ln -s "/opt/Zoho Mail - Desktop/${pkgname}" ${pkgdir}/usr/bin/${pkgname}
}
Hi all, I updated the PKGBUILD file with a couple of modifications if anyone is interested:
# Maintainer: Sabu Siyad <hello@ssiyad.com>
# This PKGBUILD is maintained at https://github.com/ssiyad/pkgbuilds/
# Past Maintainer: Hunter Wittenborn <hunter@hunterwittenborn.me>
# Past Maintainer: Emerson Almeida <duke.m16@gmail.com>
# Past Contributor: Emerson Almeida <duke.m16@gmail.com>
pkgname=zoho-mail-desktop
pkgver=1.6.0
pkgrel=1
pkgdesc="The desktop version of your favorite mailsuite!"
arch=('x86_64')
license=('custom')
url="https://www.zoho.com/mail/desktop"
_exec="/usr/bin/${pkgname} %U"
_categories="Office"
_mimetype="x-scheme-handler/mailto"
_appimage="zoho-mail-desktop-lite-x64-v${pkgver}.AppImage"
makedepends=(gendesk)
source=("https://downloads.zohocdn.com/zmail-desktop/linux/${_appimage}")
sha256sums=('d57e605755e79824a789d5a290577e449e53a40b13d41c55ff643e6c4ac8d50b')
prepare() {
chmod +x "${_appimage}"
./"${_appimage}" --appimage-extract
gendesk -f
}
package() {
mkdir -p "${pkgdir}/opt"
cp -Lr "${srcdir}/squashfs-root" "${pkgdir}/opt"
mv "${pkgdir}/opt/squashfs-root" "${pkgdir}/opt/${pkgname}"
find "${pkgdir}/opt" -type d -exec chmod +rx {} \;
mkdir -p "${pkgdir}/usr/bin"
cat >${pkgdir}/usr/bin/${pkgname} <<EOF
#!/usr/bin/bash
env APPDIR=/opt/${pkgname} /opt/${pkgname}/AppRun \$@
EOF
chmod 755 ${pkgdir}/usr/bin/${pkgname}
mkdir -p "${pkgdir}/usr/share/applications"
cp -Lr "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications"
for img in 1024x1024 128x128 16x16 256x256 32x32 48x48 512x512 64x64; do
mkdir -p "${pkgdir}/usr/share/icons/hicolor/${img}/apps"
cp -Lr "${srcdir}/squashfs-root/usr/share/icons/hicolor/${img}/apps/zoho-mail-desktop.png" "${pkgdir}/usr/share/icons/hicolor/${img}/apps/"
done
}
@Locutus64 Not sure if it wasn't clear, but the package isn't maintained by anyone right now.
Feel free to adopt if if you'd like to maintain it though :)
Any plans on updating this to 1.3.2? It's been out for a good while now. Thanks
Current version is 1.3.2
PKGBUILD fails for that version because some icon sizes are gone.
In line 35:
"for img in 1024x1024 128x128 16x16 24x24 256x256 32x32 48x48 512x512 64x64 96x96; do"
24x24 and 96x96 have to be removed.
@classabbyamp did you run it with the zoho-mail-desktop
command? Would you know if it gave a permission error or anything?
when installing with yay
, I couldn't launch the program until I did chmod +rwx -R /opt/zoho-mail-desktop/squashfs-root/
Pinned Comments