blob: f26a6611568074d7da8384ae56c17138ca03839c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# 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/qtcore:5
dev-qt/qtgui:5
"
DEPEND="${RDEPEND}"
src_configure() {
eqmake5
}
src_install() {
emake INSTALL_ROOT="${D}" install
}
|