Files
guru/app-misc/superfile/superfile-9999.ebuild
ingenarel (NeoJesus) 70649393ed app-misc/superfile: update 9999
Signed-off-by: ingenarel (NeoJesus) <ingenarel_neojesus@disroot.org>
2026-06-09 04:19:06 +06:00

53 lines
1.5 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module desktop xdg
DESCRIPTION="Pretty fancy and modern terminal file manager"
HOMEPAGE="https://superfile.dev"
if [[ "${PV}" == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/yorukot/superfile.git"
else
KEYWORDS="~amd64"
SRC_URI="https://github.com/yorukot/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/ingenarel/guru-depfiles/releases/download/${P}-deps.tar.xz/${P}-go-mod-deps.tar.xz ->
${P}-deps.tar.xz
"
# you can either use -go-mod-deps or -vendor-deps for the file
# vendor-deps are small, but may not work for some packages/version
# go-mod-deps are LARGE, but will most likely always work
fi
LICENSE="MIT"
#gentoo-go-license superfile-1.6.0.ebuild
LICENSE+=" Apache-2.0 BSD-2 BSD CC0-1.0 GPL-3 ISC MIT MPL-2.0 OFL-1.1 Unlicense "
SLOT="0"
# currently tests are disabled because superfile tends to create files in places it should not:
# https://gist.githubusercontent.com/ingenarel/d1bc358ee532d5d3a50f5cc19c429253/raw
# on top of that it has failed tests, tests depend on zoxide, tmux, python, a few python modules
# the goal is to work on a src_test function slowly and bring back tests again
RESTRICT="test"
BDEPEND=">=dev-lang/go-1.25.7"
src_unpack() {
if [[ "${PV}" == 9999* ]];then
git-r3_src_unpack
go-module_live_vendor
else
default
fi
}
src_compile() {
CGO_ENABLED=0 ego build -o bin/spf
}
src_install() {
dobin bin/spf
domenu asset/spf.desktop
}