Package Details: zoho-mail-desktop 1.6.1-1

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
Last Packager: AlfredoRamos
Votes: 10
Popularity: 0.49
First Submitted: 2018-04-22 00:37 (UTC)
Last Updated: 2023-12-30 06:06 (UTC)

Pinned Comments

Latest Comments

1 2 Next › Last »

airwinb commented on 2023-12-11 15:04 (UTC)

I also encountered the same problem as 'Myphz'. By downloading the .deb file myself, and putting it in .cache/yay/zoho-mail-desktop I was able to install this version.

Myphz commented on 2023-12-10 21:04 (UTC)

I'm encountering an error when I try to update: curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2) ==> ERROR: Failure while downloading https://downloads.zohocdn.com/zmail-desktop/linux/zoho-mail-desktop-lite-installer-x64-v1.6.1.deb Aborting... -> error making: zoho-mail-desktop-exit status 1 -> Failed to install the following packages. Manual intervention is required: zoho-mail-desktop - exit status 1

Am I doing something wrong?

Thanks for your work, @AlredoRamos and @galvez_65. I appreciate it.

AlfredoRamos commented on 2023-12-10 19:39 (UTC)

Package adopted and updated to version 1.6.1.

@galvez_65 Great suggestion switching to DEB, I added you as contributor.

galvez_65 commented on 2023-11-24 16:01 (UTC) (edited on 2023-11-25 01:57 (UTC) by galvez_65)

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}

}


galvez_65 commented on 2023-11-15 13:10 (UTC) (edited on 2023-11-16 12:59 (UTC) by galvez_65)

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
}

hwittenborn commented on 2021-11-22 22:40 (UTC)

@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 :)

Locutus64 commented on 2021-11-22 22:16 (UTC)

Any plans on updating this to 1.3.2? It's been out for a good while now. Thanks

zwog commented on 2021-10-27 21:12 (UTC) (edited on 2021-10-27 21:13 (UTC) by zwog)

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.