34 lines
964 B
Bash
34 lines
964 B
Bash
# Template file for 'bc-gh'
|
|
pkgname=bc-gh
|
|
version=2.6.0
|
|
revision=1
|
|
wrksrc="bc-${version}"
|
|
short_desc="Implementation of POSIX bc with GNU extensions"
|
|
maintainer="Gavin D. Howard <yzena.tech@gmail.com>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/gavinhoward/bc"
|
|
distfiles="${homepage}/releases/download/${version}/bc-${version}.tar.xz"
|
|
checksum=2b9f08ee9db9ca8b1d3c159a5af5fed981fcd98899630add72d327083673eb80
|
|
alternatives="
|
|
bc:bc:/usr/bin/bc-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}" \
|
|
HOSTCC="${CC_FOR_BUILD}" HOSTCFLAGS="${CFLAGS_FOR_BUILD}" ./configure.sh -GM
|
|
}
|
|
do_build() {
|
|
make ${makejobs}
|
|
}
|
|
do_check() {
|
|
make ${makejobs} test
|
|
}
|
|
do_install() {
|
|
# Note that make install is used because of a symlink.
|
|
make install
|
|
vman manuals/bc.1 bc-gh.1
|
|
vman manuals/dc.1 dc-gh.1
|
|
vlicense LICENSE.md
|
|
}
|