22 lines
502 B
Bash
22 lines
502 B
Bash
# Template file for 'txt2man'
|
|
pkgname=txt2man
|
|
version=1.6.0
|
|
revision=1
|
|
wrksrc=${pkgname}-${pkgname}-${version}
|
|
short_desc="Converts text to man page"
|
|
maintainer="Diogo Leal <diogo@diogoleal.com>"
|
|
license="GPL-2"
|
|
homepage="https://github.com/mvertes/txt2man"
|
|
distfiles="${homepage}/archive/txt2man-${version}.tar.gz"
|
|
checksum=f6939e333a12e1ecceccaa547b58f4bf901a580cd2d8f822f8c292934c920c99
|
|
noarch=yes
|
|
|
|
do_install() {
|
|
for docs in *.1; do
|
|
vman $docs
|
|
done
|
|
|
|
vbin bookman
|
|
vbin src2man
|
|
vbin txt2man
|
|
}
|