Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contrib ncview #728

Merged
merged 6 commits into from
Sep 23, 2015
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions easybuild/easyconfigs/n/ncview/ncview-2.1.2-goolf-1.4.10.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
##
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
#
# Copyright:: Copyright 2014 The Cyprus Institute
# Authors:: Thekla Loizou <[email protected]>
# License:: MIT/GPL
#
##
easyblock = 'ConfigureMake'

name = 'ncview'
version = '2.1.2'

homepage = 'http://meteora.ucsd.edu/~pierce/ncview_home_page.html'
description = """Ncview is a visual browser for netCDF format files.
Typically you would use ncview to get a quick and easy, push-button
look at your netCDF files. You can view simple movies of the data,
view along various dimensions, take a look at the actual data values,
change color maps, invert the data, etc."""

toolchain = {'name': 'goolf', 'version': '1.4.10'}
toolchainopts = {'optarch': True, 'usempi': True, 'pic': True}

source_urls = ['ftp://cirrus.ucsd.edu/pub/ncview/']
sources = [SOURCE_TAR_GZ]

configopts = "--with-udunits2_incdir=$EBROOTUDUNITS/include --with-udunits2_libdir=$EBROOTUDUNITS/lib"

dependencies = [
('netCDF-Fortran', '4.2'),
('UDUNITS', '2.1.24'),
]

sanity_check_paths = {
'files': ['bin/ncview'],
'dirs': [],
}

moduleclass = 'vis'
37 changes: 37 additions & 0 deletions easybuild/easyconfigs/n/ncview/ncview-2.1.2-ictce-5.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
##
# This file is an EasyBuild reciPY as per https://github.com/hpcugent/easybuild
#
# Copyright:: Copyright 2014 The Cyprus Institute
# Authors:: Thekla Loizou <[email protected]>
# License:: MIT/GPL
#
##
easyblock = 'ConfigureMake'

name = 'ncview'
version = '2.1.2'

homepage = 'http://meteora.ucsd.edu/~pierce/ncview_home_page.html'
description = """Ncview is a visual browser for netCDF format files.
Typically you would use ncview to get a quick and easy, push-button
look at your netCDF files. You can view simple movies of the data,
view along various dimensions, take a look at the actual data values,
change color maps, invert the data, etc."""

toolchain = {'name': 'ictce', 'version': '5.3.0'}
toolchainopts = {'optarch': True, 'usempi': True, 'pic': True}

source_urls = ['ftp://cirrus.ucsd.edu/pub/ncview/']
sources = [SOURCE_TAR_GZ]

configopts = "--with-udunits2_incdir=$EBROOTUDUNITS/include --with-udunits2_libdir=$EBROOTUDUNITS/lib"

dependencies = [
('netCDF-Fortran', '4.2'),
('UDUNITS', '2.1.24'),
]

sanity_check_paths = {
'files': ['bin/ncview'],
'dirs': [],
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tloizou: missing moduleclass here