summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/libpam/package.py
blob: 601a6f990761a6e23a0ac47d2d8d2dc9d15cbf15 (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
# 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 Libpam(AutotoolsPackage):
    """Example PAM module demonstrating two-factor authentication for
    logging into servers via SSH, OpenVPN, etc"""

    homepage = "https://github.com/google/google-authenticator-libpam"
    url      = "https://github.com/google/google-authenticator-libpam/archive/1.09.tar.gz"

    version('1.09', sha256='ab1d7983413dc2f11de2efa903e5c326af8cb9ea37765dacb39949417f7cd037')
    version('1.08', sha256='6f6d7530261ba9e2ece84214f1445857d488b7851c28a58356b49f2d9fd36290')
    version('1.07', sha256='104a158e013585e20287f8d33935e93c711b96281e6dda621a5c19575d0b0405')

    depends_on('autoconf', type='build')
    depends_on('automake', type='build')
    depends_on('libtool',  type='build')
    depends_on('m4',       type='build')
    depends_on('linux-pam')

    def autoreconf(self, spec, prefix):
        bash = which('bash')
        bash('./bootstrap.sh')