# Maintainer: Enrico Lamperti # Contributor: Tianrui Wei # Contributor: Marcio Silva # Based on the template from https://daveparrish.net/posts/2019-11-16-Better-AppImage-PKGBUILD-template.html _pkgname=sunsama pkgname="${_pkgname}"-appimage pkgver=2.3.1 pkgrel=1 pkgdesc="The daily planner for elite professionals. Organize everything you need to do today in one place. Tasks, meetings, emails, you name it." arch=('x86_64') url="https://sunsama.com/" license=('custom:Commercial') depends=('zlib' 'hicolor-icon-theme' 'fuse2') options=(!strip) _appimage="${pkgname}-${pkgver}.AppImage" source_x86_64=("${_appimage}::https://desktop.sunsama.com/linux/appImage/x64") noextract=("${_appimage}") sha256sums_x86_64=('a7b6bdb4d1ac774221d836fb8841faf24d1f5c678e7deee6b9b1409cc345474d') prepare() { chmod +x "${_appimage}" ./"${_appimage}" --appimage-extract } build() { # Adjust .desktop so it will work outside of AppImage container sed -i -E "s|Exec=AppRun|Exec=env DESKTOPINTEGRATION=false /usr/bin/${_pkgname} %u|"\ "squashfs-root/${_pkgname}.desktop" # Fix permissions; .AppImage permissions are 700 for all directories chmod -R a-x+rX squashfs-root/usr } package() { # AppImage install -Dm755 "${srcdir}/${_appimage}" "${pkgdir}/opt/${pkgname}/${pkgname}.AppImage" # Desktop file install -Dm644 "${srcdir}/squashfs-root/${_pkgname}.desktop"\ "${pkgdir}/usr/share/applications/${_pkgname}.desktop" # Icon images install -dm755 "${pkgdir}/usr/share/" cp -a "${srcdir}/squashfs-root/usr/share/icons" "${pkgdir}/usr/share/" # Symlink executable install -dm755 "${pkgdir}/usr/bin" ln -s "/opt/${pkgname}/${pkgname}.AppImage" "${pkgdir}/usr/bin/${_pkgname}" }