yum install gcc kernel-devel kernel-headers dkms make bzip2 perl
"I prefer to try and use command line, for learning purposes. in which case you can remove the items from the ~/.local/share/applications and rm from there."
nplurals value must be a decimal number which specifies how many different plural forms exist for this language. The string following plural is an expression which is using the C language syntax. Exceptions are that no negative numbers are allowed, numbers must be decimal, and the only variable allowed is n. Spaces are allowed in the expression, but backslash-newlines are not; in the examples below the backslash-newlines are present for formatting purposes only. This expression will be evaluated whenever one of the functions ngettext, dngettext, or dcngettext is called. The numeric value passed to these functions is then substituted for all uses of the variable n in the expression. The resulting value then must be greater or equal to zero and smaller than the value given as the value of nplurals.
"this is how I got it running ACLOCAL_FLAGS="-I /usr/local/share/aclocal $ACLOCAL_FLAGS" ./autogen.sh --prefix=/usr/local/mono concerning the path. I first made the mistake to get the aclocal path by running $ aclocal --print-ac-dir this gave /usr/share/aclocal and that didn't work so I made a search by running $ find /usr -iname 'share\/aclocal' and that gave me the second path /usr/local/share/aclocal who actually worked maybe there is a better way to detect the correct aclocal path ... ben"
I got it to create the configure script using the following tools:
$ libtoolize --force
$ aclocal
$ autoheader
$ automake --force-missing --add-missing
$ autoconf
$ ./configure"