src_prepare-overlay/dev-libs/libQuotient/libQuotient-0.6.0.ebuild

38 lines
735 B
Bash
Raw Normal View History

2020-06-28 11:45:00 +02:00
# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A Qt5 library to write cross-platform clients for Matrix"
HOMEPAGE="https://github.com/qmatrixclient/libqmatrixclient"
2020-10-23 16:40:04 +02:00
inherit cmake
2020-06-28 11:45:00 +02:00
if [[ ${PV} == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/quotient-im/"${PN}".git"
2020-06-28 11:45:00 +02:00
else
SRC_URI="https://github.com/quotient-im/libQuotient/archive/"${PV}".tar.gz -> "${P}".tar.gz"
2020-06-28 11:45:00 +02:00
KEYWORDS="~amd64"
fi
LICENSE="GPL-3"
SLOT="0"
RDEPEND=""
DEPEND="
${RDEPEND}
dev-qt/qtcore
dev-qt/qtmultimedia
!!dev-libs/libqmatrixclient
"
S=""${WORKDIR}"/"${PN}"-"${PV}""
2020-06-28 11:45:00 +02:00
src_configure() {
local mycmakeargs=(
-DBUILD_SHARED_LIBS=ON
)
cmake_src_configure
}