diff --git a/app-misc/bfetch/Manifest b/app-misc/bfetch/Manifest new file mode 100644 index 0000000000..8d9652b1fe --- /dev/null +++ b/app-misc/bfetch/Manifest @@ -0,0 +1 @@ +DIST bfetch-0.20260427.tar.gz 106297 BLAKE2B 46de13d68fa3ccdd8c539a4c456e2b3309bab85fd283421151549e28c82b2cad8879dbe4a677fc658d59936d7f8782e5b9aabb7bfc9eb5c210f53a80a04a2bf5 SHA512 27b107428c1716e806280e1e313099e1a659fc5f3ce785e7e6d29af25ae9aeecdccbc58a46a0651fe99c795ecf66bdaf37c3e3b4be28089f169328f1d7bfbae9 diff --git a/app-misc/bfetch/bfetch-0.20260427.ebuild b/app-misc/bfetch/bfetch-0.20260427.ebuild new file mode 100644 index 0000000000..daac96ac88 --- /dev/null +++ b/app-misc/bfetch/bfetch-0.20260427.ebuild @@ -0,0 +1,26 @@ +# 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" +COMMIT="831d8a80c3c6f76efaf77f2267007678186d0e85" +SRC_URI="https://github.com/Mjoyufull/bfetch/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +S="${WORKDIR}/bfetch-${COMMIT}" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64" + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin bfetch + dodoc README.md +}