summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libslirp/package.py
blob: 0e3eb4088fe79c2c9e81bb7dc144fa5d7344e3af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2022 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.package import *


class Libslirp(MesonPackage):
    """General purpose TCP-IP emulator"""

    homepage    = 'https://gitlab.freedesktop.org/slirp/libslirp'
    url         = 'https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v4.6.1/libslirp-v4.6.1.tar.gz'
    maintainers = ['bernhardkaindl']

    version('4.6.1', sha256='69ad4df0123742a29cc783b35de34771ed74d085482470df6313b6abeb799b11')

    depends_on('pkgconfig', type='build')
    depends_on('glib')