gui-apps/walker: new package, add 0.9.9

Signed-off-by: Julien Roy <julien@jroy.ca>
This commit is contained in:
Julien Roy
2024-11-25 07:31:24 -05:00
parent f2fead69d6
commit a520a57867
3 changed files with 51 additions and 0 deletions

2
gui-apps/walker/Manifest Normal file
View File

@@ -0,0 +1,2 @@
DIST walker-0.9.9-deps.tar.xz 28759468 BLAKE2B 2d73c751a508950c0a88b26a2e64eb483dc250479352d401d39530228c648cf8dc9e85376e4aa72d858516802947c1f3b48e9315bd303830e7e726af99429491 SHA512 2b9ff6fdb8d3f777c49e36eeab681377eecd44e2c1bc7de4d6e2cc83a4104a5474dff1e88f443ec717871c2bd54da0f0aaac7db332a3fa3cbd72dcb7ff8df677
DIST walker-0.9.9.tar.gz 816648 BLAKE2B 296e0a0551d065cf5a7fd34ef6a102631b53dba851dbfe47621f90dc2375f5bb8aa43a31c6696939b69f1f71187a1fa26cdae10eca352f8cb2193129554701fc SHA512 d319a885f5e89e361692132ac879d3cd300a265d9db9166bae45a7a9521648377ad8c2eebaf9571e82f84a749f3b328e04dada56a9de1abaea7c7d2ec9fa4b95

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<name>Julien Roy</name>
<email>julien@jroy.ca</email>
</maintainer>
<upstream>
<bugs-to>https://github.com/abenz1267/walker/issues</bugs-to>
<changelog>https://github.com/abenz1267/walker/releases</changelog>
<remote-id type="github">abenz1267/walker</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,36 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A basic clipboard manager for Wayland."
HOMEPAGE="https://github.com/abenz1267/walker"
SRC_URI="
https://github.com/abenz1267/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://jroy.ca/dist/${P}-deps.tar.xz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
gui-libs/gtk
>=gui-libs/gtk4-layer-shell-1.0.4
dev-libs/gobject-introspection
"
DEPEND="${RDEPEND}"
BDEPEND="
>=dev-libs/glib-2.80.0[introspection]
"
src_compile() {
cd "${S}"/cmd || die
ego build -o walker
}
src_install() {
dobin cmd/"${PN}"
}