New comment by TheGejr on void-packages repository https://github.com/void-linux/void-packages/pull/18586#issuecomment-578889098 Comment: @mobinmob Okay so I've finally got it working with the upstream. This looks and feels a lot better. **However** the package doesn't really work. It compiles and installs fine. But I had to do `vbin "${wrksrc}/brave" && rm "${wrksrc}/brave"` which places the executable in `/usr/bin/`, but the executable `brave` needs to be in `/usr/share/brave` else it won't work. A fix to this is to do the following ```sh mv /usr/bin/brave /usr/share/brave/ ln -sf /usr/share/brave/brave /usr/bin/brave ``` But I'm not allowed to do this in the template and if I don't `vbin` the ELF the xbps-src fails. What can be done to fix the last issue?