summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/pacparser/package.py
blob: 6f8a03f736cae3b2af4a7597dad60bf2722f7c62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2013-2021 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 Pacparser(MakefilePackage):
    """pacparser is a library to parse proxy auto-config (PAC) files."""

    homepage = "http://pacparser.github.io/"
    url      = "https://github.com/manugarg/pacparser/releases/download/1.3.7/pacparser-1.3.7.tar.gz"

    version('1.3.7', sha256='eb48ec2fc202d12a4b882133048c7590329849f32c2285bc4dbe418f29aad249')

    depends_on('python', when='+python')
    depends_on('py-setuptools', when='+python', type=('build', 'run'))

    variant('python', default=False,
            description='Build and install python bindings')

    def build(self, spec, prefix):
        make('-C', 'src')
        if '+python' in spec:
            make('-C', 'src', 'pymod')

    def install(self, spec, prefix):
        make('-C', 'src', 'install', 'PREFIX=' + self.prefix)
        if '+python' in spec:
            make('-C', 'src', 'install-pymod', 'PREFIX=' + self.prefix,
                 'EXTRA_ARGS=--prefix={0}'.format(prefix))