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
932f3930
Commit
932f3930
authored
10 years ago
by
Alfredo Gimenez
Browse files
Options
Downloads
Patches
Plain Diff
util-linux added
parent
676cc84c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
var/spack/packages/libdrm/package.py
+0
-5
0 additions, 5 deletions
var/spack/packages/libdrm/package.py
var/spack/packages/util-linux/package.py
+20
-0
20 additions, 0 deletions
var/spack/packages/util-linux/package.py
with
20 additions
and
5 deletions
var/spack/packages/libdrm/package.py
+
0
−
5
View file @
932f3930
...
@@ -10,13 +10,8 @@ class Libdrm(Package):
...
@@ -10,13 +10,8 @@ class Libdrm(Package):
version
(
'
2.4.59
'
,
'
105ac7af1afcd742d402ca7b4eb168b6
'
)
version
(
'
2.4.59
'
,
'
105ac7af1afcd742d402ca7b4eb168b6
'
)
# FIXME: Add dependencies if this package requires them.
# depends_on("foo")
def
install
(
self
,
spec
,
prefix
):
def
install
(
self
,
spec
,
prefix
):
# FIXME: Modify the configure line to suit your build system here.
configure
(
"
--prefix=%s
"
%
prefix
)
configure
(
"
--prefix=%s
"
%
prefix
)
# FIXME: Add logic to build and install here
make
()
make
()
make
(
"
install
"
)
make
(
"
install
"
)
This diff is collapsed.
Click to expand it.
var/spack/packages/util-linux/package.py
0 → 100644
+
20
−
0
View file @
932f3930
from
spack
import
*
import
os
class
UtilLinux
(
Package
):
"""
Util-linux is a suite of essential utilities for any Linux system.
"""
homepage
=
"
http://freecode.com/projects/util-linux
"
url
=
"
https://www.kernel.org/pub/linux/utils/util-linux/v2.25/util-linux-2.25.tar.gz
"
version
(
'
2.25
'
,
'
f6d7fc6952ec69c4dc62c8d7c59c1d57
'
)
depends_on
(
"
python@2.7:
"
)
def
install
(
self
,
spec
,
prefix
):
configure
(
"
--prefix=%s
"
%
prefix
,
"
PKG_CONFIG_PATH=%s/pkgconfig
"
%
spec
[
'
python
'
].
prefix
.
lib
,
"
--disable-use-tty-group
"
)
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