mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Closes: https://bugs.gentoo.org/957217 Signed-off-by: Alexander Miller <alex.miller@gmx.de> Closes: https://github.com/gentoo/gentoo/pull/44366 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
23 lines
579 B
Bash
23 lines
579 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Small defragmentation tool for reiserfs"
|
|
HOMEPAGE="https://github.com/i-rinat/reiserfs-defrag"
|
|
SRC_URI="https://github.com/i-rinat/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DOCS=( ChangeLog README.md )
|
|
|
|
PATCHES=( "${FILESDIR}/${P}-cmake4-compat.patch" )
|
|
|
|
pkg_postinst() {
|
|
ewarn "Defragmentation should be done OFFLINE only! You MUST unmount your reiserfs partition before starting ${PN}"
|
|
}
|