blob: 89d7a834b3099065cf5c9b3f8ff790441e20d945 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit savedconfig
DESCRIPTION="Simple system info written in C"
HOMEPAGE="https://github.com/13-CF/afetch/"
SRC_URI="https://github.com/13-CF/afetch/archive/refs/tags/V${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="savedconfig"
src_prepare() {
default
sed -e 's/-O2//' \
-e 's/-Wextra//' \
-e 's/CFLAGS =/CFLAGS +=/' \
-e 's/LDFLAGS =/LDFLAGS +=/' -i Makefile || die
restore_config src/config.h
}
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
save_config src/config.h
}
|