aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/netcdf.rb
AgeCommit message (Collapse)Author
2011-03-12Use ruby style for inheritance.Adam Vandenberg
2010-08-08netcdf - enable fortran supportAdam Vandenberg
2010-08-07Update formulae for version 0.7Adam Vandenberg
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
2010-06-10Removed Fortran from NetCDF buildCharlie Sharpsteen
Fortran support has been explicitly disabled in the NetCDF brew pending the resolution of Issue 72. It is perfectly possible to use the brew to build a working Fortran NetCDF library if a Fortran compiler is present. However, configure may fail on 64 bit architectures as Homebrew does not set the FCFLAGS and FFLAGS environment variables to be compatiable with those set for CFLAGS. The best resolution of this issue is formal support for a Fortran compiler. A non-existant configure argument related to Szip was removed. This dependency is satisfied by specifying the location of HDF5. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-12Updated NetCDF to build shared libsCharlie Sharpsteen
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>
2010-05-07Updated netcdf to version 4.1.1Charlie Sharpsteen
- NetCDF brew updated to version 4.1.1. - Now builds against HDF5 for interoperability. - ENV.m32 removed and builds x86_64 native on Snow Leopard (tested on 10.6.3)