New comment by unspecd on void-packages repository https://github.com/void-linux/void-packages/pull/40381#issuecomment-1308875458 Comment: > But I added the change and tested it very shortly on **glibc** This applies to musl, not glibc. I think we should a condition like this: ```diff @@ -95,4 +97,7 @@ do_install() { bsdtar --strip-components 1 -C ${DESTDIR}/usr/libexec/ghidra -xf build/dist/ghidra_${version}_DEV_$(date -u +%Y%m%d)_linux_${arch}.zip vmkdir usr/bin ln -srf /usr/libexec/$pkgname/ghidraRun ${DESTDIR}/usr/bin/ghidra + if [ "$XBPS_TARGET_LIBC" = "musl" ]; then + rm ${DESTDIR}/usr/libexec/ghidra/Ghidra/Features/FileFormats/data/sevenzipnativelibs/Linux-amd64/lib7-Zip-JBinding.so + fi } ``` Otherwise the package installation will fail on musl.