Remove remaining texinfo files.

Fixes: #86
This commit is contained in:
Andrius Štikonas 2021-04-19 00:44:21 +01:00
parent a301e6fe86
commit 7cd79d1c72
19 changed files with 43 additions and 17 deletions

View file

@ -4,6 +4,9 @@
src_prepare() {
autoreconf-2.59 -f
rm help2man.info
touch help2man.info
}
src_configure() {
@ -11,7 +14,7 @@ src_configure() {
}
src_compile() {
make
make MAKEINFO=true
# fix a broken shebang
tail -n +6 help2man > help2man.tmp
@ -19,3 +22,7 @@ src_compile() {
cat help2man.tmp >> help2man
rm help2man.tmp
}
src_install() {
make MAKEINFO=true DESTDIR="${DESTDIR}" install
}