From ab15817b38e64a842290def2017ee938ea5d9076 Mon Sep 17 00:00:00 2001 From: ingenarel Date: Wed, 21 May 2025 10:25:20 +0600 Subject: [PATCH] app-misc/superfile: add 9999 Signed-off-by: ingenarel --- app-misc/superfile/superfile-9999.ebuild | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app-misc/superfile/superfile-9999.ebuild diff --git a/app-misc/superfile/superfile-9999.ebuild b/app-misc/superfile/superfile-9999.ebuild new file mode 100644 index 0000000000..f4b8510afe --- /dev/null +++ b/app-misc/superfile/superfile-9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module git-r3 + +DESCRIPTION="Pretty fancy and modern terminal file manager" +HOMEPAGE="https://superfile.netlify.app/" +EGIT_REPO_URI="https://github.com/yorukot/superfile.git" + +LICENSE="MIT" +SLOT="0" + +src_unpack() { + git-r3_src_unpack + go-module_live_vendor +} + +src_compile() { + ego build -o bin/spf +} + +src_install() { + dobin bin/spf +}