mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
38 lines
873 B
Bash
38 lines
873 B
Bash
# Copyright 2023-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="QR Code Generator Library in Multiple Languages"
|
|
HOMEPAGE="
|
|
https://github.com/EasyCoding/qrcodegen-cmake
|
|
https://github.com/nayuki/QR-Code-generator
|
|
"
|
|
SRC_URI="
|
|
https://github.com/EasyCoding/qrcodegen-cmake/archive/v${PV}-cmake2.tar.gz -> qr-code-generator-cmake-${PV}.tar.gz
|
|
https://github.com/nayuki/QR-Code-generator/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
"
|
|
S="${WORKDIR}/QR-Code-generator-${PV}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
src_prepare() {
|
|
# Move the CMake files into the project root.
|
|
mv ../qrcodegen-cmake-${PV}-cmake2/* . || die
|
|
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DBUILD_TESTS=$(usex test)
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|