add lwgrp package
This commit is contained in:
parent
741084faf4
commit
3dd8e561b9
1 changed files with 17 additions and 0 deletions
17
var/spack/packages/lwgrp/package.py
Normal file
17
var/spack/packages/lwgrp/package.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
import os
|
||||
from spack import *
|
||||
|
||||
class Lwgrp(Package):
|
||||
"""Thie light-weight group library provides process group representations using O(log N) space and time."""
|
||||
|
||||
homepage = "https://github.com/hpc/lwgrp"
|
||||
url = "https://github.com/hpc/lwgrp/releases/download/v1.0.2/lwgrp-1.0.2.tar.gz"
|
||||
|
||||
versions = { '1.0.2' : 'ab7ba3bdd8534a651da5076f47f27d8a' }
|
||||
|
||||
depends_on('mpi')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
configure("--prefix=" + prefix)
|
||||
make()
|
||||
make("install")
|
Loading…
Reference in a new issue