Files
gentoo/sys-block/vdo/vdo-8.3.2.1.ebuild
Michał Górny 1992ce2f26 sys-block/vdo: Remove full stop from DESCRIPTION
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2026-05-02 11:57:32 +02:00

34 lines
613 B
Bash

# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Userspace tools for managing VDO volumes"
HOMEPAGE="https://github.com/dm-vdo/vdo"
SRC_URI="https://github.com/dm-vdo/vdo/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64"
# libdevmapper.h & more
DEPEND="
sys-fs/lvm2
sys-apps/util-linux
"
RDEPEND="
${DEPEND}
virtual/libudev:=
"
BDEPEND="
virtual/pkgconfig
"
src_install() {
emake install \
DESTDIR="${D}" \
bindir=/usr/bin \
mandir=/usr/share/man
mv "${D}"/usr/share/doc/{vdo,"${P}"}
}