Files
guru/app-misc/s6-man/s6-man-9999.ebuild
Andrew Ammerlaan 26c868eef8 app-misc/s6-man: quote S variables
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
2022-09-08 12:00:28 +02:00

24 lines
450 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="mdoc versions of the HTML documentation for the s6 supervision suite"
HOMEPAGE="https://skarnet.org/software/s6/"
inherit git-r3
EGIT_REPO_URI="https://github.com/flexibeast/s6-man-pages.git"
LICENSE="ISC"
SLOT="0"
src_compile() {
echo >/dev/null
}
src_install() {
ls -la "${S}"
doman "${S}"/man7/*
doman "${S}"/man8/*
}