-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Julien Roy <[email protected]>
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
DIST walker-0.10.3-deps.tar.xz 28793644 BLAKE2B 73126ea28c355531cf801dfea9c87489f0d794ad4042e4313b5910101453b438115e2feec34d3ca5a337c3d2afbad3a0c023c087d22eb6f3effdb8b476dedec1 SHA512 ae41095993dd9dc13450e43b9e0888191142bd854996d19df37bee919930f9ca6fa876937a35bf0336a2b1799722719f020573df22ba2372769078e94260b92a | ||
DIST walker-0.10.3.tar.gz 818018 BLAKE2B e924fd9061b2b864f63149feda4d478ddc05e583beb213e3da2ab6e0be161aaafc3e47e3a5ace3cc35672047a889c1cf60f2fec80fd69091c05f376eba9fcf18 SHA512 a0957a42d1e97f57eb6ad4ccacc6f888a9e176b5df25bd45c5f817ed476e710eb924dea44bd2186ce9ca79fd8a21ac92d5187df5a43446ae14865172b28c393b | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="Multi-Purpose Launcher with a lot of features. Highly Customizable and fast" | ||
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}" | ||
} |