mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
38 lines
734 B
Bash
38 lines
734 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Library for interfacing a game with a locally running Discord desktop client"
|
|
HOMEPAGE="https://github.com/eden-emulator/discord-rpc"
|
|
SRC_URI="https://github.com/eden-emulator/discord-rpc/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~ppc64"
|
|
IUSE="examples"
|
|
|
|
DEPEND="
|
|
dev-libs/rapidjson
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-3.4.0-install-examples-for-RelWithDebInfo-too.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
rm -rf thirdparty || die
|
|
|
|
cmake_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DBUILD_EXAMPLES=$(usex examples)
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|