Skip to content

Commit f000d88

Browse files
committed
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>
1 parent 1199fed commit f000d88

2 files changed

Lines changed: 36 additions & 0 deletions

File tree

app-misc/bfetch/bfetch-9999.ebuild

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright 1999-2026 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
inherit toolchain-funcs
7+
8+
DESCRIPTION="Ultra-fast system fetch tool written in C"
9+
HOMEPAGE="https://github.com/Mjoyufull/bfetch"
10+
EGIT_REPO_URI="https://github.com/Mjoyufull/bfetch.git"
11+
12+
LICENSE="AGPL-3"
13+
SLOT="0"
14+
KEYWORDS="~amd64"
15+
16+
src_compile() {
17+
emake CC="$(tc-getCC)" \
18+
CFLAGS="${CFLAGS}" \
19+
LDFLAGS="${LDFLAGS}"
20+
}
21+
22+
src_install() {
23+
dobin bfetch
24+
dodoc README.md
25+
}

app-misc/bfetch/metadata.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="person">
5+
<name>Theron York</name>
6+
<email>theron.york@cloudnuke.org</email>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="github">Mjoyufull/bfetch</remote-id>
10+
</upstream>
11+
</pkgmetadata>

0 commit comments

Comments
 (0)