summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ps-lite/package.py
blob: 887e126814a5389f66a4310817fe17058b618abf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class PsLite(CMakePackage):
    """ps-lite is A light and efficient implementation
    of the parameter server framework."""

    homepage = "https://github.com/dmlc/ps-lite"
    git      = "https://github.com/dmlc/ps-lite.git"

    version('master', branch='master')
    version('20170328', commit='acdb698fa3bb80929ef83bb37c705f025e119b82')

    depends_on('protobuf@3:')
    depends_on('zeromq')

    patch('cmake.patch')