guru/dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0.ebuild
Ronny (tastytea) Gutbrod 0472b184e2
dev-cpp/qt-jdenticon: don't compile in install phase
Closes: https://bugs.gentoo.org/887323
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
2022-12-21 10:14:09 +01:00

28 lines
497 B
Bash

# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qmake-utils
DESCRIPTION="Qt5 / C++14 Port of Jdenticon"
HOMEPAGE="https://github.com/Nheko-Reborn/qt-jdenticon"
SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-qt/qtgui
"
DEPEND="${RDEPEND}"
src_configure() {
eqmake5
}
src_install() {
emake INSTALL_ROOT="${D}" install
}