-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16829 from boegel/20221208105435_new_pr_JasPer400
{vis}[GCCcore/12.2.0] JasPer v4.0.0
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
easybuild/easyconfigs/j/JasPer/JasPer-4.0.0-GCCcore-12.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
easyblock = 'CMakeMake' | ||
|
||
name = 'JasPer' | ||
version = '4.0.0' | ||
|
||
homepage = 'https://www.ece.uvic.ca/~frodo/jasper/' | ||
|
||
description = """ | ||
The JasPer Project is an open-source initiative to provide a free | ||
software-based reference implementation of the codec specified in | ||
the JPEG-2000 Part-1 standard. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.2.0'} | ||
toolchainopts = {'pic': True} | ||
|
||
github_account = 'jasper-software' | ||
source_urls = [GITHUB_SOURCE] | ||
sources = ['version-%(version)s.tar.gz'] | ||
checksums = ['977c4c2e4210f4e37313cd2232d99e73d57ab561917b3c060bcdd5e83a0a13f1'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.39'), | ||
('CMake', '3.24.3'), | ||
] | ||
|
||
configopts = '-DJAS_ENABLE_DOC=OFF ' | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/jasper', ('lib/libjasper.%s' % SHLIB_EXT, 'lib64/libjasper.%s' % SHLIB_EXT)], | ||
'dirs': ['include'], | ||
} | ||
|
||
sanity_check_commands = ['jasper --version'] | ||
|
||
moduleclass = 'vis' |