Package Details: fluffychat-git rc1.20.0.2.r74.g8da714b0-1

Git Clone URL: https://aur.archlinux.org/fluffychat-git.git (read-only, click to copy)
Package Base: fluffychat-git
Description: Open. Nonprofit. Cute. Easy to use (matrix) messenger. Secure and decentralized.
Upstream URL: https://fluffychat.im/
Keywords: matrix
Licenses: AGPL3
Conflicts: fluffychat
Provides: fluffychat
Submitter: garionion
Maintainer: garionion (WithTheBraid)
Last Packager: WithTheBraid
Votes: 1
Popularity: 0.000000
First Submitted: 2021-01-17 11:27 (UTC)
Last Updated: 2024-05-24 13:47 (UTC)

Latest Comments

« First ‹ Previous 1 2

nyanpasu64 commented on 2021-07-25 07:52 (UTC) (edited on 2021-07-25 08:15 (UTC) by nyanpasu64)

Package doesn't work. /usr/share/applications/fluffychat.desktop points to fluffychat, but the package installs /usr/bin/fluffychat-git, which is a broken link to /opt/fluffychat-git/fluffychat-git, but the actual binary is /opt/fluffychat-git/fluffychat.

I've fixed this locally as follows:

diff --git a/PKGBUILD b/PKGBUILD
index c7de9dc..79d607a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@

 pkgname=fluffychat-git
 _name=fluffychat
-pkgver=v0.32.0.r0.gcf37d567
+pkgver=v0.34.0.r103.g03895f54
 pkgrel=1
 pkgdesc="Chat with your friends"
 arch=('x86_64')
@@ -47,7 +47,7 @@ package() {

   # link
   install -dm755 ${pkgdir}/usr/bin
-  ln -s /opt/${pkgname}/${pkgname} ${pkgdir}/usr/bin/${pkgname}
+  ln -s /opt/${pkgname}/${_name} ${pkgdir}/usr/bin/${_name}

   # icon
   install -Dm 644 ${pkgdir}/opt/${pkgname}/data/flutter_assets/assets/favicon.png ${pkgdir}/usr/share/pixmaps/${pkgname}.png