diff options
Diffstat (limited to 'sys-fs/mergerfs-tools/mergerfs-tools-0_p20210502-r2.ebuild')
-rw-r--r-- | sys-fs/mergerfs-tools/mergerfs-tools-0_p20210502-r2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sys-fs/mergerfs-tools/mergerfs-tools-0_p20210502-r2.ebuild b/sys-fs/mergerfs-tools/mergerfs-tools-0_p20210502-r2.ebuild new file mode 100644 index 000000000000..5a0890ce8bf1 --- /dev/null +++ b/sys-fs/mergerfs-tools/mergerfs-tools-0_p20210502-r2.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit python-any-r1 + +DESCRIPTION="Optional tools to help manage data in a mergerfs pool" +HOMEPAGE="https://github.com/trapexit/mergerfs-tools" +SRC_URI="https://dev.gentoo.org/~slashbeast/distfiles/$PN/$P.tar.xz" + +LICENSE="ISC" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND}" + +src_compile() { + # no build system. + true +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install +} |