You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
48 lines
1.5 KiB
Tcl
48 lines
1.5 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
|
|
name bc
|
|
version 1.08.2
|
|
revision 0
|
|
categories math
|
|
maintainers nomaintainer
|
|
license GPL-3+
|
|
|
|
description arbitrary precision numeric processing language
|
|
|
|
long_description bc is an arbitrary precision numeric processing language. \
|
|
Syntax is similar to C, but differs in many substantial \
|
|
areas. It supports interactive execution of statements. \
|
|
bc is a utility included in the POSIX P1003.2/D11 draft \
|
|
standard.
|
|
|
|
homepage https://www.gnu.org/software/bc/
|
|
master_sites gnu:bc
|
|
|
|
checksums rmd160 a010987f6c6781a9899d5c8ee8f1822db7257193 \
|
|
sha256 ae470fec429775653e042015edc928d07c8c3b2fc59765172a330d3d87785f86 \
|
|
size 457557
|
|
|
|
installs_libs no
|
|
|
|
depends_build-append \
|
|
port:texinfo
|
|
|
|
depends_lib-append \
|
|
port:flex
|
|
|
|
variant libedit conflicts readline description {use libedit for command input editing} {
|
|
depends_lib-append port:libedit
|
|
configure.args-append --with-libedit
|
|
}
|
|
|
|
variant readline conflicts libedit description {use GNU readline for command input editing} {
|
|
depends_lib-append port:readline
|
|
configure.args-append --with-readline
|
|
}
|
|
|
|
if {![variant_isset libedit] && ![variant_isset readline]} {
|
|
default_variants +libedit
|
|
}
|