diff options
author | 2023-05-02 12:59:41 +0200 | |
---|---|---|
committer | 2023-05-02 12:59:41 +0200 | |
commit | 2c645e6cca94a4e26317ed8303699975780e8031 (patch) | |
tree | d668666265e12ec6f806ba28cfddb7578050cc25 /gui-wm | |
parent | dev-python/desktop-notifier: disable py3.9 (diff) | |
download | guru-2c645e6cca94a4e26317ed8303699975780e8031.tar.gz guru-2c645e6cca94a4e26317ed8303699975780e8031.tar.bz2 guru-2c645e6cca94a4e26317ed8303699975780e8031.zip |
gui-wm/hyprland-contrib: new package, add 0.1
Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
Diffstat (limited to 'gui-wm')
-rw-r--r-- | gui-wm/hyprland-contrib/Manifest | 1 | ||||
-rw-r--r-- | gui-wm/hyprland-contrib/hyprland-contrib-0.1.ebuild | 38 | ||||
-rw-r--r-- | gui-wm/hyprland-contrib/metadata.xml | 11 |
3 files changed, 50 insertions, 0 deletions
diff --git a/gui-wm/hyprland-contrib/Manifest b/gui-wm/hyprland-contrib/Manifest new file mode 100644 index 000000000..1ef117679 --- /dev/null +++ b/gui-wm/hyprland-contrib/Manifest @@ -0,0 +1 @@ +DIST hyprland-contrib-0.1.tar.gz 13608 BLAKE2B 6cd69792a0a96b1df47039d33ea5fe4aa286a37359cd855042c6bd52c81f83d42f119d2ddd2fb5215695d8b8f03ebd907d05e0eae98495164a1c0f59d9cdd4b8 SHA512 f258711b1f35bd2c913a19d98282c3cc257413916e5727986e4cfb1922aa256ec361aef840013e6acbe084746d69271b78a5043ab11044ef074baabc9d5e9ed7 diff --git a/gui-wm/hyprland-contrib/hyprland-contrib-0.1.ebuild b/gui-wm/hyprland-contrib/hyprland-contrib-0.1.ebuild new file mode 100644 index 000000000..3769f05a6 --- /dev/null +++ b/gui-wm/hyprland-contrib/hyprland-contrib-0.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Community-maintained extensions for hyprland" +HOMEPAGE="https://hyprland.org/" +SRC_URI="https://github.com/hyprwm/contrib/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + app-shells/bash +" +DEPEND="${RDEPEND} +" + +S="${WORKDIR}/contrib-${PV}" +src_install() { + pushd grimblast || die + PREFIX="${D}/usr" emake install + popd || die + pushd hyprprop || die + PREFIX="${D}/usr" emake install + popd || die + pushd scratchpad || die + PREFIX="${D}/usr" emake install + popd || die + pushd shellevents || die + PREFIX="${D}/usr" emake install + popd || die + pushd try_swap_workspace || die + PREFIX="${D}/usr" emake install + popd || die +} diff --git a/gui-wm/hyprland-contrib/metadata.xml b/gui-wm/hyprland-contrib/metadata.xml new file mode 100644 index 000000000..cc162a507 --- /dev/null +++ b/gui-wm/hyprland-contrib/metadata.xml @@ -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"> + <name>Pascal Jaeger</name> + <email>pascal.jaeger@leimstift.de</email> + </maintainer> + <upstream> + <remote-id type="github">hyprwm/contrib</remote-id> + </upstream> +</pkgmetadata> |