gui-libs/qml-niri: new package, add 0.1.2

Signed-off-by: Ceres <ceres@ceressees.dev>

gui-libs/qml-niri: Add metadata.xml
This commit is contained in:
Ceres
2025-12-31 21:19:16 +00:00
parent cd1e60c3bb
commit c7a5dc39f4
3 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST qml-niri-0.1.2.tar.gz 44781 BLAKE2B f1130821971cc211fc33683e388f93b6cb1307bd6b1fd6bcab567b28d9755e8bb2310f83acc73c1ae0ae6dfdf545b4404c93ad36dd6ebcf7fb4d56d2261f90ed SHA512 6a579509fa57e87773461f4a5136fb89738db9619eaa51bad2ccaa4aa1eacf40904f15446e248c203da32b18bef4cc1d1e3e93438c7fe7a39aa09caa57b69ba1

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>ceres@ceressees.dev</email>
<name>Ceres Milner</name>
</maintainer>
<upstream>
<remote-id type="github">imiric/qml-niri</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,27 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="A QML plugin for niri"
HOMEPAGE="https://github.com/imiric/qml-niri"
SRC_URI="https://github.com/imiric/qml-niri/archive/refs/tags/v0.1.2.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
BDEPEND="dev-build/just"
BUILD_DIR="${WORKDIR}/${P}/build"
src_install() {
mkdir -p "${D}/usr/lib64/qt6/qml"
cp -r build/Niri "${D}/usr/lib64/qt6/qml/"
}
scr_postinst() {
elog "Make sure QML_IMPORT_PATH contains /usr/lib64/qt6/qml"
}