mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 23:46:14 -04:00
in preparation for slot 6 (qt6) in the next version Signed-off-by: tastytea <gentoo@tastytea.de>
28 lines
504 B
Bash
28 lines
504 B
Bash
# Copyright 2021-2024 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="5"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
dev-qt/qtgui:5
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
eqmake5
|
|
}
|
|
|
|
src_install() {
|
|
emake INSTALL_ROOT="${D}" install
|
|
}
|