lylejk wrote:
What would be cool Rod is if someone would create a online PHP (think that's the term for perl script) where you upload or link the plugin that you want compiled, set either 32 or 64-bit and click a button. Not sure how hard or feasible this would be, but it sure would hope novice users like me.

The only problem with that would be the possibility of "server overload".

Imagine many people trying to compile many src files on one machine all at one time.
I still think the best way is a sh file.
Think about it...
You run the sh file via your cmd console. Each time you run the file all dependencies are updated from one GIT or Windows repository. You would have the correct sh file that corresponds to your system.
The script downloads or updates and installs all GIMPS dependencies needed to compile plugins.
Now all you need are the src files of the plugin. Untar or Unzip the src files.
Now in the same cmd window you just change to the src file directory that contains the configure file and type..
./configure
make ; make install OR if it's just 1 C file...
gimptool-2.0 --install [or just --build] plugin.c
Everything is built and placed in the proper installation folders.

Easy Peasy.
There would have to be dedicated folks to update all those dependencies of course but that could be as easy as contacting the authors of each library and asking for update information each time.
Most updates come from GLIB, BABL, GTK+, GEGL and GIMP so it shouldn't be too hard to keep dependencies correct.
Writing the SH script would be the hardest part.

It would be quite a challenge. I did start one but... GLIB wasn't up to date and there were a few probs with GETTEXT (online probs with file names)