summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/ctpl/package.py
blob: cd5ddcc4fa0fe1f920e5b9e54df7dae204591ea1 (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
# Copyright 2013-2023 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 Ctpl(AutotoolsPackage):
    """CTPL is a template engine library written in C and distributed
    under the terms of the GNU GPL."""

    homepage = "https://github.com/b4n/ctpl"
    url = "https://github.com/b4n/ctpl/archive/0.3.tar.gz"

    license("GPL-3.0-only")

    version("0.3", sha256="034875ba8e1ce87b7ee85bc7146a6a2b2a6ac0518482b36d65eb67dd09c03d0a")

    depends_on("autoconf", type="build")
    depends_on("automake", type="build")
    depends_on("libtool", type="build")
    depends_on("m4", type="build")
    depends_on("gettext", type="build")
    depends_on("gtk-doc")
    depends_on("glib@2.10:")

    def autoreconf(self, spec, prefix):
        bash = which("bash")
        bash("./autogen.sh")