mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 07:33:19 -04:00
Ultra-optimized system fetch tool written in C. Signed-off-by: Theron York <theron.york@cloudnuke.org>
27 lines
588 B
Bash
27 lines
588 B
Bash
# 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
|
|
}
|