2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-08-18 20:17:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-08-18 20:17:25 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Libpipeline(AutotoolsPackage):
|
|
|
|
"""libpipeline is a C library for manipulating pipelines of subprocesses
|
|
|
|
in a flexible and convenient way."""
|
|
|
|
|
|
|
|
homepage = "http://libpipeline.nongnu.org/"
|
|
|
|
url = "http://git.savannah.nongnu.org/cgit/libpipeline.git/snapshot/libpipeline-1.4.2.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.4.2', sha256='ac8b103b281ff63129c4fa6a8cc40bb5863e3a4266343d6e3bb5788de1ede488')
|
2017-08-18 20:17:25 +08:00
|
|
|
|
2017-11-23 23:05:38 +08:00
|
|
|
depends_on('pkgconfig', type='build')
|
2018-06-07 23:33:59 +08:00
|
|
|
depends_on('check', type='test')
|