mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
33 lines
680 B
Bash
33 lines
680 B
Bash
# Copyright 2018-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="A Qt5 library to write cross-platfrom clients for Matrix"
|
|
HOMEPAGE="
|
|
https://github.com/quotient-im/libQuotient
|
|
https://matrix.org/docs/projects/sdk/quotient
|
|
"
|
|
SRC_URI="https://github.com/QMatrixClient/libqmatrixclient/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
SLOT="0/0.5.3"
|
|
LICENSE="LGPL-2.1"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
dev-qt/qtnetwork:5=
|
|
dev-qt/qtgui:5=
|
|
dev-qt/qtmultimedia:5=
|
|
"
|
|
|
|
S="${WORKDIR}/libQuotient-${PV}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DCMAKE_INSTALL_INCLUDEDIR=include/libqmatrixclient
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|