src_prepare-overlay/dev-libs/libQtOlm/libQtOlm-3.0.1.ebuild
2020-06-01 16:38:45 +02:00

55 lines
1.0 KiB
Bash

<<<<<<< HEAD
# Copyright 1999-2017 Gentoo Foundation
=======
# Copyright 2020 Gentoo Authors
>>>>>>> upstream/master
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A Qt wrapper for libolm"
HOMEPAGE="https://gitlab.com/b0/libQtOlm"
inherit eutils cmake-utils
SRC_URI="https://gitlab.com/b0/libqtolm/-/archive/v3.0.1/libqtolm-v3.0.1.tar.gz"
if [[ ${PV} == 9999 ]]
then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/b0/${PN}.git"
else
<<<<<<< HEAD
SRC_URI="https://gitlab.com/b0/libqtolm/-/archive/v${PV}/libqtolm-v${PV}.tar.gz"
KEYWORDS="~amd64 ~x86"
=======
SRC_URI="https://gitlab.com/b0/libqtolm/-/archive/v${PV}/libqtolm-v${PV}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/libqtolm-v${PV}"
>>>>>>> upstream/master
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
RDEPEND=""
DEPEND="
${RDEPEND}
dev-qt/qtcore
<<<<<<< HEAD
dev-libs/olm"
S="${WORKDIR}"/libqtolm-v3.0.1
=======
dev-libs/olm
"
>>>>>>> upstream/master
src_configure() {
local mycmakeargs=(
-DBUILD_SHARED_LIBS=ON
)
cmake-utils_src_configure
}