horst3180 / arc-theme

A flat theme with transparent elements
GNU General Public License v3.0
8.28k stars 613 forks source link

./autogen.sh: 10: ./autogen.sh: autoreconf: not found #804

Open amingarro opened 7 years ago

amingarro commented 7 years ago

$ ./autogen.sh --prefix=/usr $ ./autogen.sh: 10: ./autogen.sh: autoreconf: not found

autogen.sh missing on this branch

alexwaibel commented 7 years ago

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"

dcorrea777 commented 7 years ago

@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

luca-drf commented 7 years ago

Installing automake solved for me.

xhzren commented 6 years ago

Good,Very Thanks

thopiekar commented 6 years ago

@danilosilva87 dh-autoreconf is meant to be used together with debhelper. It should be enough to install autoconf and automake.

amingarro commented 3 years ago

Thanks!

SoulNaturalist commented 1 year ago

@dcorrea777 thanks