Flagpoll 0.8.1 review

Download
by rbytes.net on

Flagpoll project is a tool for developers to use meta-data files for storing information on what is needed to compile their software.

License: GPL (GNU General Public License)
File size: 0K
Developer: Daniel E. Shipton
0 stars award from rbytes.net

Flagpoll project is a tool for developers to use meta-data files for storing information on what is needed to compile their software.

Think of it as the rpm of software development. It provides developers with total control over which packages, versions, architectures, et cetera that they want to use meta-data from.

Instead of specifying other packages' cflags and ldflag manually, you can call `flagpoll mylib --cflags --ldflags` and it will retrieve the flags for its package as well as its dependencies.

For example:

gcc -o foo foo.c `flagpoll --libs --cflags gtk+-2.0`

Is a lot cleaner than:

gcc -o foo foo.c -L/usr/lib64 -lgtk-x11-2.0 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lm
-lgobject-2.0 -lglib-2.0 -lgmodule-2.0 -ldl -lpango-1.0
-lpangocairo-1.0 -lcairo -latk-1.0
-I/usr/include/gtk-2.0 -I/usr/lib64/gtk-2.0/include
-I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include
-I/usr/include/pango-1.0 -I/usr/include/cairo
-I/usr/include/atk-1.0

All of the dependencies needed for compilation are kept in each packages meta-data file. The dependencies are resolved and the results are all necessary libs and includes needed for gtk+.

What's New in This Release:
Many bugs have been squashed in this release due to a new basic test suite that was added.
Recursive dependency lookups have been improved, as well as debug output.

Flagpoll 0.8.1 keywords