0.1.21:
* Open files in binary mode. This fixes an issue where fig packages could
not be read on Windows.
0.1.22:
* You can now use wildcards in 'resource' statements. The wildcards are
Bash-style fileglobs. For example,
resource dist/*.jar
config default
append CLASSPATH=@/dist/foo.jar`
end
* You can 'append' and 'retrieve' entire directories now.
# Example, publishing log4cplus:
resource lib/*.so
resource include/**/*.h
config default
append LIBPATH=@/lib/liblog4cplus.so
append INCLUDEPATH=@/include//log4cplus
end
# Example, consuming log4cplus:
retrieve LIBPATH=>lib
retrieve INCLUDEPATH=>include
config default
include log4cplus/1.0
end
If you find any problems please let us know.