sys-power/RyzenAdj: 0.8.3 version bump

Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
This commit is contained in:
Piotr Karbowski
2022-02-07 23:23:36 +01:00
parent 1a7c9a89de
commit 497cb5a636
2 changed files with 32 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST RyzenAdj-0.8.2.tar.gz 122245 BLAKE2B 8a2bc25e1f3030c4e1832149c359cc31fee29303643db9724afc34f4cb5afa4076049ce7c8634034fa4415ace9b71b3bace8bacb55e7ee7630c65285b843e1f9 SHA512 740f3aa57b349e9ccba715aed45e6fdd61ad22ebf1050bba8a11da7c5d6aaa37a39b9c3b6a1762556da7f9424e3af63de19476eb5f6cb7593cd8edb4f5f4b248
DIST RyzenAdj-0.8.3.tar.gz 122381 BLAKE2B 39cfaee1013eace362805acbc330ba791c03297d416484ddc96dd10553df1a78eb849ce8f90fea40415c0caf8fdcbe7059d7b27e21a0db9dcd04f99ebdf640a3 SHA512 57e3c9a0c85e194b2200ad2a265dd293bc04434bded8bf0cf61a9ae0ae08dbf993363e7fb7d02033b896828fbe6b637c6b23ab3cb0587d4f1d0108c9cdd3ea36

View File

@@ -0,0 +1,31 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="The power management tool for mobile and desktop Ryzen APUs"
HOMEPAGE="https://github.com/FlyGoat/RyzenAdj"
SRC_URI="https://github.com/FlyGoat/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="sys-apps/pciutils"
RDEPEND="${DEPEND}"
BDEPEND=""
src_configure() {
CMAKE_BUILD_TYPE="Release"
cmake_src_configure
}
src_install() {
dosbin "${BUILD_DIR}"/ryzenadj
dolib.so "${BUILD_DIR}"/libryzenadj.so
dodoc "${S}"/README.md
}