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
1
Merge Requests
1
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
4592aa9a
Commit
4592aa9a
authored
Dec 27, 2025
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm play: add dorion (Discord alternative client)
parent
a54a27a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
0 deletions
+51
-0
dorion.sh
play.d/dorion.sh
+28
-0
dorion.sh
repack.d/dorion.sh
+23
-0
No files found.
play.d/dorion.sh
0 → 100755
View file @
4592aa9a
#!/bin/sh
PKGNAME
=
dorion
SUPPORTEDARCHES
=
"x86_64 aarch64 armhf"
VERSION
=
"
$2
"
DESCRIPTION
=
"Dorion - lightweight alternative Discord client"
URL
=
"https://github.com/SpikeHD/Dorion"
.
$(
dirname
$0
)
/common.sh
arch
=
"
$(
epm print info
-a
)
"
pkgtype
=
"
$(
epm print info
-p
)
"
case
"
$pkgtype
"
in
rpm
)
# Dorion_6.11.0-1.x86_64.rpm / Dorion_6.11.0-1.aarch64.rpm / Dorion_6.11.0-1.armhfp.rpm
[
"
$arch
"
=
"armhf"
]
&&
arch
=
"armhfp"
PKGURL
=
"
$(
get_github_url SpikeHD/Dorion Dorion_
${
VERSION
}
-1
.
${
arch
}
.rpm
)
"
;;
*
)
# Dorion_6.11.0_amd64.deb / Dorion_6.11.0_arm64.deb / Dorion_6.11.0_armhf.deb
arch
=
"
$(
epm print info
--distro-arch
)
"
[
"
$arch
"
=
"armv7l"
]
&&
arch
=
"armhf"
PKGURL
=
"
$(
get_github_url SpikeHD/Dorion Dorion_
${
VERSION
}
_
${
arch
}
.deb
)
"
;;
esac
install_pkgurl
repack.d/dorion.sh
0 → 100644
View file @
4592aa9a
#!/bin/sh -x
BUILDROOT
=
"
$1
"
SPEC
=
"
$2
"
PRODUCT
=
Dorion
.
$(
dirname
$0
)
/common.sh
# Dorion is a Tauri application (Rust + WebView)
# License is GPL-3.0 per https://github.com/SpikeHD/Dorion
# Fix empty License field from original package
subst
"s|^License:.*|License: GPL-3.0|"
$SPEC
# Move lib files to /opt/Dorion
move_to_opt /usr/lib/
$PRODUCT
# Move binary from /usr/bin to /opt/Dorion
move_file /usr/bin/
$PRODUCT
$PRODUCTDIR
/
$PRODUCT
add_bin_link_command
$PRODUCT
add_bin_link_command dorion
$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