minc-toolkit: add runtime flex dependency (#32345)

Some programs such as `minccalc` depend on libfl.so at runtime.
This commit is contained in:
Ben Darwin 2022-08-23 19:14:07 -04:00 committed by GitHub
parent 7e87c208ba
commit 3fb7fdfc58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ class MincToolkit(CMakePackage):
depends_on("perl-text-format", type=("build", "run"))
depends_on("perl-getopt-tabular", type=("build", "run"))
depends_on("perl-mni-perllib", type=("build", "run"))
depends_on("flex", type="build")
depends_on("flex", type=("build", "run")) # e.g minccalc depends on libfl.so
depends_on("bison", type="build")
depends_on("zlib", type="link")
depends_on("freeglut", when="+visualisation")