-
Notifications
You must be signed in to change notification settings - Fork 0
/
conanfile.py
58 lines (48 loc) · 1.93 KB
/
conanfile.py
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
55
56
57
58
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from conans import ConanFile, CMake, tools
import os
class ZstdConan(ConanFile):
name = "zstd"
version = "1.3.4"
url = "https://github.com/zinnion/conan-zstd"
homepage = "https://facebook.github.io/zstd/"
description = "Zstandard - Fast real-time compression algorithm"
author = "Zinnion <mauro@zinnion.com>"
license = "BSD"
exports = ["LICENSE.md"]
exports_sources = ['CMakeLists.txt']
generators = 'cmake'
settings = "os", "arch", "compiler", "build_type"
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = "shared=False", "fPIC=True"
source_subfolder = "source_subfolder"
def source(self):
source_url = "https://github.com/facebook/zstd"
tools.get("{0}/archive/v{1}.tar.gz".format(source_url, self.version))
extracted_dir = self.name + "-" + self.version
os.rename(extracted_dir, self.source_subfolder)
def config_options(self):
if self.settings.os == "Windows":
del self.options.fPIC
def configure(self):
del self.settings.compiler.libcxx
def configure_cmake(self):
cmake = CMake(self)
cmake.definitions["CMAKE_INSTALL_LIBDIR"] = "lib"
cmake.definitions["ZSTD_BUILD_PROGRAMS"] = False
cmake.definitions["ZSTD_BUILD_STATIC"] = not self.options.shared
cmake.definitions["ZSTD_BUILD_SHARED"] = self.options.shared
if self.settings.os != "Windows":
cmake.definitions["CMAKE_POSITION_INDEPENDENT_CODE"] = self.options.fPIC
cmake.configure()
return cmake
def build(self):
cmake = self.configure_cmake()
cmake.build()
def package(self):
self.copy(pattern="LICENSE", dst="license", src=self.source_subfolder)
cmake = self.configure_cmake()
cmake.install()
def package_info(self):
self.cpp_info.libs = tools.collect_libs(self)