浏览代码

Add ls-std 2022.2.0 recipe

Patrick-Christopher Mattulat 2 年之前
父节点
当前提交
3a9a65e8b2
共有 1 个文件被更改,包括 45 次插入0 次删除
  1. 45 0
      recipes/ls-std/2022_2_0/conanfile.py

+ 45 - 0
recipes/ls-std/2022_2_0/conanfile.py

@@ -0,0 +1,45 @@
+from conans import ConanFile, CMake
+
+
+class LsStdConan(ConanFile):
+    name = "ls-std"
+    version = "2022.2.0"
+    license = "MIT"
+    url = "<Package recipe repository url here, for issues about the package>"
+    description = "This is a cross-platform standard library written in C++ offering functionalities you would " \
+                  "usually miss in C++'s standard template library (STL), especially if you would search for " \
+                  "cross-platform implementations."
+    topics = ("boxing", "core", "encoding", "event", "io", "logic", "time")
+    settings = "os", "compiler", "build_type", "arch"
+    options = {"shared": [True, False]}
+    default_options = {"shared": False}
+    generators = "cmake"
+
+    def source(self):
+        self.run("git clone https://vcs.lynarstudios.de/public/ls-standard-library.git --branch v" + self.version +
+                 " --single-branch")
+
+    def build(self):
+        cmake = self.__configure_cmake()
+        cmake.build()
+
+    def package(self):
+        self.copy("*.hpp", dst="include", src="ls-standard-library/include")
+        self.copy("*.lib", dst="lib", keep_path=False)
+        self.copy("*.a", dst="lib", keep_path=False)
+        self.copy("*.so", dst="lib", keep_path=False)
+        self.copy("*.dll", dst="lib", keep_path=False)
+
+    def package_info(self):
+        self.cpp_info.libs = ["ls_std_boxing", "ls_std_core", "ls_std_encoding", "ls_std_event", "ls_std_io", "ls_std_logic", "ls_std_time"]
+
+    def __configure_cmake(self):
+        cmake = CMake(self)
+
+        if self.options.shared:
+            cmake.definitions['LS_STD_BUILD_STATIC'] = "OFF"
+            cmake.definitions['LS_STD_BUILD_SHARED'] = "ON"
+
+        cmake.configure(source_folder="ls-standard-library")
+
+        return cmake