diff options
author | 2022-05-18 17:34:41 +0100 | |
---|---|---|
committer | 2022-05-18 17:34:41 +0100 | |
commit | cb363a17677b6d7c5e0cb4c3a38e92f96d7607d8 (patch) | |
tree | 248f2c0ad330dfdf08af6573289e865545f33277 /app-misc/s6-man | |
parent | dev-util/git-bug: new package, add 0.7.1, 9999 (diff) | |
download | guru-cb363a17677b6d7c5e0cb4c3a38e92f96d7607d8.tar.gz guru-cb363a17677b6d7c5e0cb4c3a38e92f96d7607d8.tar.bz2 guru-cb363a17677b6d7c5e0cb4c3a38e92f96d7607d8.zip |
app-misc/s6-man: new package, add 9999
Signed-off-by: Tony Olagbaiye <bqv@fron.io>
Diffstat (limited to 'app-misc/s6-man')
-rw-r--r-- | app-misc/s6-man/s6-man-9999.ebuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app-misc/s6-man/s6-man-9999.ebuild b/app-misc/s6-man/s6-man-9999.ebuild new file mode 100644 index 000000000..b5ba30962 --- /dev/null +++ b/app-misc/s6-man/s6-man-9999.ebuild @@ -0,0 +1,23 @@ +# Copyright 2021 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="http://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/* +} |