$ ./autogen.sh --prefix=/usr
$ ./autogen.sh: 10: ./autogen.sh: autoreconf: not found
autogen.sh missing on this branch
autogen.sh is still there if you look at the files in the code tab. It sounds like you're missing whatever package provides autoreconf for your distribution. If you're on Ubuntu then this would be the autoconf package. Additional dependencies are shown in the readme under "Manual Installation"
@amingarro It looks like you have not installed the autoreconf package.
If you are using ubuntu, you can install with the following command:
sudo apt-get install dh-autoreconf
Installing automake solved for me.
Good,Very Thanks
@danilosilva87 dh-autoreconf is meant to be used together with debhelper. It should be enough to install autoconf and automake.
Most helpful comment
@amingarro It looks like you have not installed the autoreconf package.
If you are using ubuntu, you can install with the following command:
sudo apt-get install dh-autoreconf