and dc. Original submission by Ivan Ivanov, who takes MAINTAINER -- thanks! ok bentley@ bc is an arbitrary precision calculator language. Syntax is similar to C, but differs in many substantial areas. It supports interactive execution of statements. It can also be used as a simple console-based calculator. This GNU version of bc contains several extensions beyond traditional bc implementations and the POSIX draft standard. This package includes GNU dc, another arbitrary precision calculator. dc is a reverse-polish desk calculator which supports unlimited precision arithmetic. It also allows you to define and call macros.
23 lines
507 B
Makefile
23 lines
507 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2018/08/21 02:04:04 bcallah Exp $
|
|
|
|
COMMENT = GNU version of the arbitrary precision calculators bc and dc
|
|
DISTNAME = bc-1.07.1
|
|
PKGNAME = g${DISTNAME}
|
|
CATEGORIES = math
|
|
|
|
HOMEPAGE = https://www.gnu.org/software/bc/
|
|
MAINTAINER = Ivan Ivanov <rambiusparkisanius@gmail.com>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c curses edit
|
|
|
|
MASTER_SITES = ${MASTER_SITE_GNU:=bc/}
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --program-prefix=g \
|
|
--with-libedit
|
|
|
|
.include <bsd.port.mk>
|