bc-gh: fix alternatives for the man pages.

Install man pages with the suffix -gh.
This commit is contained in:
travankor 2020-02-22 19:46:55 -07:00 committed by Juan RP
parent f7f7c682dc
commit 80237de0a5

View file

@ -1,7 +1,7 @@
# Template file for 'bc-gh'
pkgname=bc-gh
version=2.5.3
revision=1
revision=2
wrksrc="bc-${version}"
short_desc="Implementation of POSIX bc with GNU extensions"
maintainer="Gavin D. Howard <yzena.tech@gmail.com>"
@ -11,7 +11,9 @@ distfiles="${homepage}/releases/download/${version}/bc-${version}.tar.xz"
checksum=f7cec2a1bf6be2e805dfda6955b4631ec64d3397e96ce33f5a69909ba7aaf5c5
alternatives="
bc:bc:/usr/bin/bc-gh
dc:dc:/usr/bin/dc-gh"
bc:bc.1:/usr/share/man/man1/bc-gh.1
dc:dc:/usr/bin/dc-gh
dc:dc.1:/usr/share/man/man1/dc-gh.1"
do_configure() {
PREFIX=/usr DESTDIR="${DESTDIR}" EXECSUFFIX=-gh CC="${CC}" CFLAGS="${CFLAGS}" \
@ -26,7 +28,7 @@ do_check() {
do_install() {
# Note that make install is used because of a symlink.
make install
vman manuals/bc.1
vman manuals/dc.1
vman manuals/bc.1 bc-gh.1
vman manuals/dc.1 dc-gh.1
vlicense LICENSE.md
}