app-misc/bfetch: new package

Add bfetch, an ultra-optimized system fetch tool written in C.

Signed-off-by: Theron York <theron.york@cloudnuke.org>
This commit is contained in:
Theron York
2026-04-26 17:33:04 -05:00
parent 1199fed594
commit f000d88734
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Ultra-fast system fetch tool written in C"
HOMEPAGE="https://github.com/Mjoyufull/bfetch"
EGIT_REPO_URI="https://github.com/Mjoyufull/bfetch.git"
LICENSE="AGPL-3"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
emake CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin bfetch
dodoc README.md
}

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">
<name>Theron York</name>
<email>theron.york@cloudnuke.org</email>
</maintainer>
<upstream>
<remote-id type="github">Mjoyufull/bfetch</remote-id>
</upstream>
</pkgmetadata>