Files
guru/dev-libs/discord-rpc/discord-rpc-3.4.1.ebuild
2025-12-18 16:52:54 -05:00

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
}