Files
guru/dev-libs/discord-rpc/discord-rpc-3.4.0.ebuild
Pavel Sobolev bd0f054285 dev-libs/discord-rpc: new package, add 3.4.0
Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
2025-08-02 13:41:05 +03:00

32 lines
644 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/discord/discord-rpc"
SRC_URI="https://github.com/discord/discord-rpc/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"
DEPEND="
dev-libs/rapidjson
"
PATCHES=(
"${FILESDIR}/${PN}-3.4.0-install-examples-for-RelWithDebInfo-too.patch"
)
src_configure() {
local mycmakeargs=(
-DBUILD_EXAMPLES=$(usex examples)
)
cmake_src_configure
}