(declare-project
:name "ec"
:description "a very good calculator"
:dependencies ["https://git.sr.ht/~subsetpark/fugue"
"https://github.com/janet-lang/argparse.git"
"https://github.com/pyrmont/testament"
"https://git.sr.ht/~subsetpark/janet-rl"
"https://github.com/zenlor/janet-csv.git"])
(def *static-build* (= (or (os/getenv "EC_STATIC_BUILD") "0") "1"))
(declare-executable
:name "ec"
:entry "main.janet"
:lflags (if *static-build* ["-static"] [])
:install true)