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
7fd639d6
Commit
7fd639d6
authored
8 years ago
by
Sergey Kosukhin
Committed by
Todd Gamblin
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update libjpeg-turbo: added new version and removed redundant dependency. (#1897)
parent
bd61a365
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/libjpeg-turbo/package.py
+12
-7
12 additions, 7 deletions
var/spack/repos/builtin/packages/libjpeg-turbo/package.py
with
12 additions
and
7 deletions
var/spack/repos/builtin/packages/libjpeg-turbo/package.py
+
12
−
7
View file @
7fd639d6
...
...
@@ -26,20 +26,25 @@
class
LibjpegTurbo
(
Package
):
"""
libjpeg-turbo is a fork of the original IJG libjpeg which uses
SIMD to accelerate baseline JPEG compression and
decompression. libjpeg is a library that implements JPEG image
encoding, decoding and transcoding.
"""
"""
libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to
accelerate baseline JPEG compression and decompression. libjpeg is a
library that implements JPEG image encoding, decoding and
transcoding.
"""
homepage
=
"
http://libjpeg-turbo.virtualgl.org
"
url
=
"
http://downloads.sourceforge.net/libjpeg-turbo/libjpeg-turbo-1.3.1.tar.gz
"
version
(
'
1.5.0
'
,
'
3fc5d9b6a8bce96161659ae7a9939257
'
)
version
(
'
1.3.1
'
,
'
2c3a68129dac443a72815ff5bb374b05
'
)
# Can use either of these.
depends_on
(
"
yasm
"
,
type
=
'
build
'
)
# Can use either of these. But in the current version of the package
# only nasm is used. In order to use yasm an environmental variable
# NASM must be set.
# TODO: Implement the selection between two supported assemblers.
# depends_on("yasm", type='build')
depends_on
(
"
nasm
"
,
type
=
'
build
'
)
def
install
(
self
,
spec
,
prefix
):
configure
(
"
--prefix=
%s
"
%
prefix
)
configure
(
"
--prefix=
"
+
prefix
)
make
()
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