app-misc/omencore-bin: new package, add 3.8.0

Signed-off-by: Samuel Hurtado Marin <samuel@hurtadom.dev>
This commit is contained in:
Samuel Hurtado Marin
2026-06-28 00:15:30 +02:00
parent 6b24d3034b
commit 4dc6afb3f5
4 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST OmenCore-3.8.0-linux-x64.zip 45691645 BLAKE2B a1ef9c8104318f15fb7417daeaecb781f50695c1adea2ad85dfc3fc7412797fd6aa051ef9dab4b0ee595bbecf0ad91f215b2d98c3a2e4db5a80fe40d09d3a353 SHA512 961fe4946f2366440ff66580e63044282ab8a582a2a7869d1193f881bc0d2f1fda156c4e2f67aaf3e209d837fab0c89bd0352d8552478becfc68ced33544f98f

View File

@@ -0,0 +1,8 @@
[Desktop Entry]
Type=Application
Name=OmenCore
Comment=Advanced Performance Control for HP Omen Laptops
Exec=omencore-gui
Icon=preferences-system
Terminal=false
Categories=System;HardwareSettings;

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>samuel@hurtadom.dev</email>
<name>Samuel Hurtado Marin</name>
</maintainer>
<upstream>
<remote-id type="github">theantipopau/omencore</remote-id>
<bugs-to>https://github.com/theantipopau/omencore/issues</bugs-to>
</upstream>
<longdescription lang="en">
OmenCore is an independent control center for HP OMEN and Victus systems.
It replaces OMEN Gaming Hub with local-first fan control, performance
profiles, keyboard lighting, hardware monitoring, OSD, and diagnostics.
</longdescription>
</pkgmetadata>

View File

@@ -0,0 +1,28 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop
DESCRIPTION="OmenCore is an Advanced Performance Control for HP Omen Laptops"
HOMEPAGE="https://omencore.info/"
SRC_URI="https://github.com/theantipopau/omencore/releases/download/v${PV}/OmenCore-${PV}-linux-x64.zip"
S="${WORKDIR}" #src unzip /work directory
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="mirror strip"
QA_PREBUILT="*"
BDEPEND="app-arch/unzip"
src_install() {
insinto /opt/omencore-bin
doins -r *
fperms 755 /opt/omencore-bin/omencore-cli
fperms 755 /opt/omencore-bin/omencore-gui
dosym -r /opt/omencore-bin/omencore-cli /usr/bin/omencore-cli
dosym -r /opt/omencore-bin/omencore-gui /usr/bin/omencore-gui
domenu "${FILESDIR}"/omencore-gui.desktop
}
pkg_postinst() {
einfo "omencore-gui: launch as normal user for monitoring (it's in the app menu)"
einfo "omencore-cli: use 'omencore-cli' as root for fan/thermal/RGB control"
}