diff options
author | V3n3RiX <venerix@koprulu.sector> | 2025-03-04 01:46:23 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2025-03-04 01:46:23 +0000 |
commit | d13006cca857323814c09f5123b87c1a005bba74 (patch) | |
tree | ca4a24c0b40356fb7efce3e245882a9e87b5db3c /www-apps/element/element-1.11.94.ebuild | |
parent | eab7afdf0fe1454220af1a74c5556855a937a819 (diff) |
Diffstat (limited to 'www-apps/element/element-1.11.94.ebuild')
-rw-r--r-- | www-apps/element/element-1.11.94.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www-apps/element/element-1.11.94.ebuild b/www-apps/element/element-1.11.94.ebuild new file mode 100644 index 000000000000..808c5da3f6c6 --- /dev/null +++ b/www-apps/element/element-1.11.94.ebuild @@ -0,0 +1,32 @@ +# Copyright 2021-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit webapp + +DESCRIPTION="A glossy Matrix collaboration client for the web" +HOMEPAGE="https://element.io/" +SRC_URI="https://github.com/vector-im/element-web/releases/download/v${PV}/${PN}-v${PV}.tar.gz" +S=${WORKDIR}/${PN}-v${PV} + +LICENSE="Apache-2.0" +KEYWORDS="~amd64 ~riscv ~x86" + +need_httpd + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + + dodir "${MY_HTDOCSDIR}"/home + dodir "${MY_HTDOCSDIR}"/sites + + webapp_serverowned "${MY_HTDOCSDIR}"/home + webapp_serverowned "${MY_HTDOCSDIR}"/sites + #webapp_configfile "${MY_HTDOCSDIR}"/config.json + + webapp_src_install +} |