Files
oasis-linux-mirror/pkg/bc/gen.lua
Michael Forney 1f05b9a1a0 bc: Switch back to GNU bc
The 1.07 release means we don't have to apply a bunch of patches,
and it is a smaller binary anyway.
2020-12-03 02:02:23 -08:00

19 lines
298 B
Lua

cflags{
'-std=c99', '-Wall', '-Wpedantic',
'-D _POSIX_C_SOURCE=200809L',
'-I $dir',
'-I $srcdir/h',
}
exe('bin/bc', [[
bc/(
main.c bc.c scan.c execute.c load.c storage.c util.c global.c
warranty.c
)
lib/number.c
]])
file('bin/bc', '755', '$outdir/bin/bc')
man{'doc/bc.1'}
fetch 'curl'