I opened an issue rather than making a PR because as far as I understand you can build with either meson/ninja or cmake/make, and fixing one might break the other.
I built stargus with Meson and Ninja, and it placed the resulting compiled binaries in /build/src.
However, the bundle.sh script will look for stargus and startools in build and it will fail to find them.
I fixed the issue by adding /src to lines 49 and 50 of bundle.sh:
I opened an issue rather than making a PR because as far as I understand you can build with either meson/ninja or cmake/make, and fixing one might break the other.
I built stargus with Meson and Ninja, and it placed the resulting compiled binaries in
/build/src
. However, the bundle.sh script will look for stargus and startools inbuild
and it will fail to find them.I fixed the issue by adding
/src
to lines 49 and 50 of bundle.sh: