from conans import ConanFile, tools, AutoToolsBuildEnvironment import os class SystemcverificationConan(ConanFile): name = "SystemCVerification" version = "2.0.1" license = "Apache 2.0 License" url = "https://github.com/Minres/conan-recipes/blob/master/SystemCVerification" description = "The SystemC Verification (SCV) library provides a common set of APIs that are used as a basis to verification activities with SystemC" settings = "os", "compiler", "build_type", "arch" options = {"stdcxx":[98,11,14]} default_options = "stdcxx=98" generators = "gcc" source_subfolder = "scv-2.0.1" exports_sources = "scv-2.0.1/*" requires = "SystemC/2.3.2@minres/stable" def configure(self): self.options["SystemC"].stdcxx = self.options.stdcxx def build(self): env_build = AutoToolsBuildEnvironment(self) if self.options.stdcxx == "14": env_build.cxx_flags = "-std=gnu++14" elif self.options.stdcxx == "11": env_build.cxx_flags = "-std=gnu++11" elif self.options.stdcxx == "98": env_build.cxx_flags = "-std=gnu++98" env_build.fpic = True tools.mkdir("build") with tools.chdir("build"): env_build.configure( configure_dir=os.path.join(self.source_folder, self.source_subfolder), args=[ '--prefix=%s' % os.path.join(self.source_folder, 'install'), '--with-systemc=%s' % self.deps_cpp_info["SystemC"].rootpath, '--disable-debug', '--disable-opt' ] ) env_build.make() env_build.make(args=["install"]) #env_build.make(args=["check"]) def package(self): # Headers self.copy(pattern="*.h", dst="include", src="install/include", keep_path=True) # Libs self.copy(pattern="*", dst="lib", src="install/lib-linux", keep_path=False) self.copy(pattern="*", dst="lib", src="install/lib-linux64", keep_path=False) self.copy(pattern="*", dst="lib", src="install/lib-macosx", keep_path=False) self.copy(pattern="*", dst="lib", src="install/lib-macosx64", keep_path=False) self.copy(pattern="*", dst="lib", src="install/lib-cygwin", keep_path=False) self.copy(pattern="*", dst="lib", src="install/lib-mingw", keep_path=False) def package_info(self): self.cpp_info.libs = ["scv"]