File: conanfile.py

package info (click to toggle)
libtcod 1.18.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,464 kB
  • sloc: ansic: 48,535; cpp: 11,905; python: 4,840; makefile: 44; sh: 25
file content (54 lines) | stat: -rw-r--r-- 1,919 bytes parent folder | download
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import subprocess

from conans import ConanFile, CMake, tools

class LibtcodConan(ConanFile):
    name = "libtcod"
    license = "BSD 3-Clause License"
    author = "Kyle Stewart 4b796c65+libtcod@gmail.com"
    url = "https://github.com/libtcod/libtcod"
    description = "A free, fast, portable and uncomplicated API for roguelike developers."
    topics = ("roguelikedev",)
    settings = "os", "compiler", "build_type", "arch"
    options = {"shared": [True, False]}
    default_options = {"shared": False}
    generators = "cmake"
    requires = (
        "sdl2/[~=2.0.5]@bincrafters/stable",
        "zlib/[~=1.2.11]@conan/stable",
    )
    scm = {
        "type": "git",
        "url": "https://github.com/libtcod/libtcod.git",
        "revision": "auto",
    }

    def set_version(self):
        """Use `git describe` for the version string."""
        git = tools.Git()
        try:
            self.version = git.run("describe --abbrev=0")
        except subprocess.CalledProcessError:
            self.version = "0.0"

    def build(self):
        cmake = CMake(self)
        cmake.configure(source_folder=".")
        cmake.build()

    def package(self):
        self.copy("*.h", dst="include", src="src", excludes="vendor/*")
        self.copy("*.hpp", dst="include", src="src", excludes="vendor/*")
        self.copy("*.lib", dst="lib", src="lib", keep_path=False)
        self.copy("*.dll", dst="bin", src="bin", keep_path=False)
        self.copy("*.so", dst="lib", src="lib", keep_path=False)
        self.copy("*.dylib", dst="lib", src="lib", keep_path=False)
        self.copy("*.a", dst="lib", src="lib", keep_path=False)

    def package_info(self):
        if self.settings.compiler == "Visual Studio":
            self.cpp_info.libs = ["libtcod"]
        else:
            self.cpp_info.libs = ["tcod"]
        if not self.options.shared:
            self.cpp_info.defines = ["LIBTCOD_STATIC"]