Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Spack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eic_tools
Spack
Commits
1de110fb
Commit
1de110fb
authored
8 years ago
by
Tom Scogland
Browse files
Options
Downloads
Plain Diff
Merge pull request #794 from adamjstewart/features/jpeg
Add latest jpeg version
parents
7dbf6f97
9c3d8dae
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
var/spack/repos/builtin/packages/jpeg/package.py
+7
-2
7 additions, 2 deletions
var/spack/repos/builtin/packages/jpeg/package.py
with
7 additions
and
2 deletions
var/spack/repos/builtin/packages/jpeg/package.py
+
7
−
2
View file @
1de110fb
from
spack
import
*
from
spack
import
*
class
Jpeg
(
Package
):
class
Jpeg
(
Package
):
"""
jpeg library
"""
"""
libjpeg is a widely used free library with functions for handling the
JPEG image data format. It implements a JPEG codec (encoding and decoding)
alongside various utilities for handling JPEG data.
"""
homepage
=
"
http://www.ijg.org
"
homepage
=
"
http://www.ijg.org
"
url
=
"
http://www.ijg.org/files/jpegsrc.v9
a
.tar.gz
"
url
=
"
http://www.ijg.org/files/jpegsrc.v9
b
.tar.gz
"
version
(
'
9b
'
,
'
6a9996ce116ec5c52b4870dbcd6d3ddb
'
)
version
(
'
9a
'
,
'
3353992aecaee1805ef4109aadd433e7
'
)
version
(
'
9a
'
,
'
3353992aecaee1805ef4109aadd433e7
'
)
def
install
(
self
,
spec
,
prefix
):
def
install
(
self
,
spec
,
prefix
):
configure
(
"
--prefix=%s
"
%
prefix
)
configure
(
"
--prefix=%s
"
%
prefix
)
make
()
make
()
make
(
"
test
"
)
make
(
"
install
"
)
make
(
"
install
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment