Files
gentoo/www-apps/element/element-1.10.15.ebuild
Bernard Cafarelli 8616d841bf www-apps/element: element-1.10.15 bump, drop old
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
2022-06-18 18:44:12 +02:00

36 lines
733 B
Bash

# Copyright 2021-2022 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"
LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86"
DEPEND=""
RDEPEND="${DEPEND}"
need_httpd
S=${WORKDIR}/${PN}-v${PV}
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
}