8b3a64491c
Closes: https://gitlab.com/src_prepare/src_prepare-overlay/-/issues/34 Signed-off-by: Maciej Barć <xgqt@riseup.net>
50 lines
895 B
Bash
50 lines
895 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit xdg cmake
|
|
|
|
DESCRIPTION="Raspberry Pi Imaging Utility"
|
|
HOMEPAGE="https://github.com/raspberrypi/rpi-imager"
|
|
|
|
if [[ "${PV}" == *9999* ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/raspberrypi/${PN}.git"
|
|
else
|
|
SRC_URI="https://github.com/raspberrypi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
RESTRICT="mirror"
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
IUSE="debug"
|
|
|
|
RDEPEND="
|
|
app-arch/libarchive
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtdeclarative:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtquickcontrols2:5
|
|
dev-qt/qtwidgets:5
|
|
dev-qt/qtxml:5
|
|
net-misc/curl
|
|
sys-fs/udisks:2
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
src_configure() {
|
|
local CMAKE_BUILD_TYPE
|
|
if use debug; then
|
|
CMAKE_BUILD_TYPE="Debug"
|
|
else
|
|
CMAKE_BUILD_TYPE="Release"
|
|
fi
|
|
|
|
cmake_src_configure
|
|
}
|