-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconanfile.py
80 lines (67 loc) · 2.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
from conans import ConanFile, CMake, tools
import platform
class WJElementConan(ConanFile):
name = 'wjelement'
source_version = '1.3'
package_version = '2'
version = '%s-%s' % (source_version, package_version)
build_requires = (
'llvm/5.0.2-1@vuo/stable',
'macos-sdk/11.0-0@vuo/stable',
'vuoutils/1.2@vuo/stable',
)
settings = 'os', 'compiler', 'build_type', 'arch'
url = 'https://github.com/netmail-open/wjelement'
license = 'https://github.com/netmail-open/wjelement/blob/master/COPYING'
description = 'A library for validating JSON schema'
source_dir = 'wjelement-%s' % source_version
build_dir = '_build'
install_dir = '_install'
libs = {
'wjelement': 1,
'wjreader': 1,
'wjwriter': 1,
'xpl': 1,
}
generators = 'cmake'
def requirements(self):
if platform.system() == 'Linux':
self.requires('patchelf/0.10pre-1@vuo/stable')
elif platform.system() != 'Darwin':
raise Exception('Unknown platform "%s"' % platform.system())
def source(self):
tools.get('https://github.com/netmail-open/wjelement/archive/v%s.tar.gz' % self.source_version,
sha256='63f588777e5cee58e17206e454aa5ab46486e27f416b3b92aba098896472ee56')
self.run('mv %s/COPYING.LESSER %s/%s.txt' % (self.source_dir, self.source_dir, self.name))
def build(self):
cmake = CMake(self)
cmake.definitions['CMAKE_BUILD_TYPE'] = 'Release'
cmake.definitions['CMAKE_C_COMPILER'] = self.deps_cpp_info['llvm'].rootpath + '/bin/clang'
cmake.definitions['CMAKE_C_FLAGS'] = '-Oz -DNDEBUG'
cmake.definitions['CMAKE_OSX_ARCHITECTURES'] = 'x86_64;arm64'
cmake.definitions['CMAKE_OSX_DEPLOYMENT_TARGET'] = '10.11'
cmake.definitions['CMAKE_OSX_SYSROOT'] = self.deps_cpp_info['macos-sdk'].rootpath
cmake.definitions['CMAKE_INSTALL_PREFIX'] = '../%s' % self.install_dir
import VuoUtils
tools.mkdir(self.build_dir)
with tools.chdir(self.build_dir):
cmake.configure(source_dir='../%s' % self.source_dir,
build_dir='.')
cmake.build()
cmake.install()
with tools.chdir('%s/lib' % self.install_dir):
VuoUtils.fixLibs(self.libs, self.deps_cpp_info)
def package(self):
self.copy('*.h', src='%s/include' % self.install_dir, dst='include/wjelement')
if platform.system() == 'Darwin':
libext = 'dylib'
elif platform.system() == 'Linux':
libext = 'so'
else:
raise Exception('Unknown platform "%s"' % platform.system())
for f in list(self.libs.keys()):
self.copy('lib%s.%s' % (f, libext), src='%s/lib' % self.install_dir, dst='lib')
self.copy('%s.txt' % self.name, src=self.source_dir, dst='license')
def package_info(self):
self.cpp_info.libs = list(self.libs.keys())
self.cpp_info.includedirs = ['include', 'include/wjelement']