diff options
author | Tim Harder <radhermit@gentoo.org> | 2017-08-22 11:24:31 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2017-08-22 11:24:31 -0400 |
commit | 905c09dcf636a02419897a6f057295c833216117 (patch) | |
tree | 730fa879933cb61c220be765e9ecd932092e79fc /app-text/txt2man/txt2man-1.6.0.ebuild | |
parent | x11-misc/xdo: version bump to 0.5.6 (diff) | |
download | gentoo-905c09dcf636a02419897a6f057295c833216117.tar.gz gentoo-905c09dcf636a02419897a6f057295c833216117.tar.bz2 gentoo-905c09dcf636a02419897a6f057295c833216117.zip |
app-text/txt2man: version bump to 1.6.0
Diffstat (limited to 'app-text/txt2man/txt2man-1.6.0.ebuild')
-rw-r--r-- | app-text/txt2man/txt2man-1.6.0.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-text/txt2man/txt2man-1.6.0.ebuild b/app-text/txt2man/txt2man-1.6.0.ebuild new file mode 100644 index 000000000000..52ff0bcf6dc6 --- /dev/null +++ b/app-text/txt2man/txt2man-1.6.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +DESCRIPTION="Scripts to convert regular ASCII text to man pages" +HOMEPAGE="https://github.com/mvertes/txt2man" +SRC_URI="https://github.com/mvertes/txt2man/archive/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris" +IUSE="" + +RDEPEND="app-shells/bash + sys-apps/gawk" + +S=${WORKDIR}/${PN}-${P} + +src_compile() { :; } + +src_install() { + dobin bookman src2man txt2man + doman *.1 + dodoc Changelog README +} |