Andrea,  gg says:

You must have been building in the past with (and somehow this got dropped):
    --with-single-user
somewhere in your script.  If you look at bld.sh, you will see that line in there and that is why that works.
The default is system build instead which requires root permission for /usr/bin .
Solution: however you are doing the build, add the --with-single-user

----------- copy of bld.sh is below -----------------
#!/bin/bash
( ./autogen.sh
  ./configure --with-single-user --with-booby
  make && make install ) 2>&1 | tee log
mv Makefile Makefile.cfg
cp Makefile.devel Makefile



On Sat, Mar 9, 2019 at 9:14 AM Andrea paz <gamberucci.andrea@gmail.com> wrote:
I can't compile the last 2 release.
The configuration and make steps are fine, but I have an error in the
"make install" step:
...
cp: impossible to create the regular file '/usr/bin/zmpeg3cat':
Permission denied
make: *** [Makefile:977: zmp_install] Error 1

If I compile using ./bld.sh instead, there are no errors.
(All the installations I did were non-root.)