Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
40d2074c
Commit
40d2074c
authored
Feb 10, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm play: added FluffyChat (Matrix messenger)
parent
f1d8e07d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
0 deletions
+91
-0
fluffychat.sh
pack.d/fluffychat.sh
+47
-0
fluffychat.sh
play.d/fluffychat.sh
+32
-0
fluffychat.sh
repack.d/fluffychat.sh
+12
-0
No files found.
pack.d/fluffychat.sh
0 → 100755
View file @
40d2074c
#!/bin/sh
TAR
=
"
$1
"
RETURNTARNAME
=
"
$2
"
#VERSION="$3"
URL
=
"
$4
"
.
$(
dirname
$0
)
/common.sh
VERSION
=
$(
echo
"
$URL
"
|
grep
-oP
'v\K[0-9]+\.[0-9]+\.[0-9]+'
)
[
-n
"
$VERSION
"
]
||
fatal
"Can't get package version"
PKGNAME
=
$PRODUCT
-
$VERSION
mkdir
-p
opt/
erc unpack
$TAR
||
fatal
mv
"
$(
erc
basename
$TAR
)
"
opt/
$PRODUCT
chmod
0755 opt/
$PRODUCT
/
$PRODUCT
iconname
=
chat.fluffy.
$PRODUCT
install_file opt/
$PRODUCT
/data/flutter_assets/assets/favicon.png /usr/share/pixmaps/
$iconname
.png
cat
<<
EOF
| create_file /usr/share/applications/
$iconname
.desktop
[Desktop Entry]
Version=1.0
Name=FluffyChat
Comment=Open source Matrix messenger
Exec=
$PRODUCT
%u
Icon=
$iconname
StartupWMClass=fluffychat
Type=Application
Categories=Chat;Network;InstantMessaging;
MimeType=x-scheme-handler/matrix;
Keywords=matrix;chat;im;messaging;messenger;
EOF
erc pack
$PKGNAME
.tar opt usr
cat
<<
EOF
>
$PKGNAME
.tar.eepm.yaml
name:
$PRODUCT
group: Networking/Instant messaging
license: AGPLv3
url: https://github.com/krille-chan/fluffychat
summary: Open source Matrix messenger
description: FluffyChat is an open source, nonprofit and cute Matrix messenger.
EOF
return_tar
$PKGNAME
.tar
play.d/fluffychat.sh
0 → 100755
View file @
40d2074c
#!/bin/sh
PKGNAME
=
fluffychat
SUPPORTEDARCHES
=
"x86_64 aarch64"
VERSION
=
"
$2
"
DESCRIPTION
=
"FluffyChat - open source, nonprofit and cute Matrix messenger from the official site"
URL
=
"https://github.com/krille-chan/fluffychat"
.
$(
dirname
$0
)
/common.sh
arch
=
"
$(
epm print info
-a
)
"
case
"
$arch
"
in
x86_64
)
arch
=
x64
;;
aarch64
)
arch
=
arm64
;;
*
)
fatal
"
$arch
arch is not supported"
;;
esac
# https://github.com/krille-chan/fluffychat/releases/download/v2.4.1/fluffychat-linux-x64.tar.gz
# https://github.com/krille-chan/fluffychat/releases/download/v2.4.1/fluffychat-linux-arm64.tar.gz
if
[
"
$VERSION
"
=
"*"
]
;
then
PKGURL
=
$(
get_github_url
"
$URL
"
"fluffychat-linux-
$arch
.tar.gz"
)
else
PKGURL
=
"https://github.com/krille-chan/fluffychat/releases/download/v
$VERSION
/fluffychat-linux-
$arch
.tar.gz"
fi
install_pack_pkgurl
repack.d/fluffychat.sh
0 → 100755
View file @
40d2074c
#!/bin/sh -x
# It will be run with two args: buildroot spec
BUILDROOT
=
"
$1
"
SPEC
=
"
$2
"
PRODUCT
=
fluffychat
PRODUCTDIR
=
/opt/
$PRODUCT
.
$(
dirname
$0
)
/common.sh
add_bin_link_command
$PRODUCT
$PRODUCTDIR
/
$PRODUCT
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment