gui-apps/wl-scripts: new package, add 1.0.0, 9999

Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
This commit is contained in:
Mazunki Hoksaas
2022-12-27 18:14:59 +01:00
parent 5d0a0bfb5d
commit 4c5fbb6ac9
4 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST wl-scripts-1.0.0.tar.gz 13934 BLAKE2B 4f7e4ce844bfafa40310ea83a99d46933d70ab94f408ead881e9f98e8b103dce208395f1f9ba81cfec546924d38cb8c7cdc29cf28c22d100521ea2015e2ad632 SHA512 f49be27c952a04b7e563541147ffa769882beffdb2847bfeec6217e9eb7d133ed7ecf8441c11b7f788c3b6f7d156083597faed4325cfec2038bb087480dc9d99

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>rolferen@gmail.com</email>
<name>Mazunki Hoksaas</name>
</maintainer>
<upstream>
<remote-id type="github">mazunki/wl-scripts</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,28 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
SRC_URI="https://github.com/mazunki/wl-scripts/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
DESCRIPTION="A set of utils for wlroots window managers"
HOMEPAGE="https://github.com/mazunki/wl-scripts"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=""
RDEPEND="
app-alternatives/awk
app-misc/jq
>=gui-apps/wofi-1.3
gui-apps/slurp
gui-wm/sway
"
BDEPEND="" # scripts are just sh
src_install() {
exeinto "/usr/bin/"
doexe "${S}"/src/*
}

View File

@@ -0,0 +1,29 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
EGIT_REPO_URI="https://github.com/mazunki/wl-scripts.git"
DESCRIPTION="A set of utils for wlroots window managers"
HOMEPAGE="https://github.com/mazunki/wl-scripts"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
DEPEND=""
RDEPEND="
app-alternatives/awk
app-misc/jq
>=gui-apps/wofi-1.3
gui-apps/slurp
gui-wm/sway
"
BDEPEND="" # scripts are just sh
src_install() {
exeinto "/usr/bin/"
doexe "${S}"/src/*
}