mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/952055 See-Also: fab336945b48415755744dc7e57c0abe64c1d2ec Signed-off-by: Alfred Wingate <parona@protonmail.com> From: https://github.com/gentoo/gentoo/pull/41289 Signed-off-by: Zac Medico <zmedico@gentoo.org>
28 lines
616 B
Bash
28 lines
616 B
Bash
# Copyright 2019-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools linux-info
|
|
|
|
DESCRIPTION="FUSE implementation for overlayfs"
|
|
HOMEPAGE="https://github.com/containers/fuse-overlayfs"
|
|
SRC_URI="https://github.com/containers/fuse-overlayfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv"
|
|
|
|
DEPEND="sys-fs/fuse:3="
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
pkg_pretend() {
|
|
kernel_is -lt 4 18 && eerror "Linux Kernel > v4.18.0 is required" && die
|
|
}
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|