An extremely memory-efficient hash_map implementation. 2 bits/entry overhead!
The SparseHash library contains several hash-map implementations, including
implementations that optimize for space or speed.
These hashtable implementations are similar in API to SGI's hash_map class and
the tr1 unordered_map class, but with different performance characteristics.
It's easy to replace hash_map or unordered_map by sparse_hash_map or
dense_hash_map in C++ code.
Libglade is a library that performs a similar job to the C source output
routines in the GLADE user interface builder. Whereas GLADE's output
routines create C source code that must be compiled, libglade builds
the interface from an XML file (GLADE's save format) at runtime. This
can allow modifying the user interface without recompiling.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* gtk+ dep pulls in glib and atk
* Remove unused configure switch
Formula for Platypus version 4.2.
Note: This builds only the command-line utility, not the application
bundle, as homebrew is not supposed to build apps.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Surfraw provides a fast unix command line interface to a variety of
popular WWW search engines and other artifacts of power. It reclaims
google, altavista, babelfish, dejanews, freshmeat, research index,
slashdot and many others from the false-prophet, pox-infested
heathen lands of html-forms, placing these wonders where they
belong, deep in unix heartland, as god loving extensions to the
shell.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
* Remove unused configure switches
* Must "make install" using j1 on Mac Pro
By default, NetCDF only builds static libs. This leads to some
complicated dependencies that must be satisfied by other programs that
link against libnetcdf.a:
nc-config --libs
-L/<brew root>/Cellar/netcdf/4.1.1/lib -lnetcdf
-L/<brew root>/Cellar/hdf5/1/lib -lhdf5_hl -lhdf5 -lz -lm -lcurl
HDF5 is required to access version 4 of the NetCDF file format.
When shared libraries are provided, the linking requirements are
greatly simplified:
nc-config --libs
-L/<brew root>/Cellar/netcdf/4.1.1/lib -lnetcdf
This eases the build process for other formulas that depend on NetCDF
libraries.
The static libraries are still compiled and available for use.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>