-
Notifications
You must be signed in to change notification settings - Fork 1
/
conanfile.py
49 lines (41 loc) · 1.78 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
from conans import ConanFile, CMake, tools
from conan.errors import ConanInvalidConfiguration
import os
class LibaioConan(ConanFile):
name = "libaio"
version = "0.3.111"
description = "The Linux-native asynchronous I/O facility"
topics = ("conan", "libaio", "linux", "asynchronous", "io", )
url = "https://github.com/bincrafters/conan-libaio"
homepage = "https://pagure.io/libaio"
license = "LGPL-2.1"
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"
_build_subfolder = "build_subfolder"
def configure(self):
del self.settings.compiler.libcxx
del self.settings.compiler.cppstd
if self.settings.os != 'Linux':
raise ConanInvalidConfiguration("libaio is only designed for Linux.")
def source(self):
sha256 = "e6bc17cba66e59085e670fea238ad095766b412561f90b354eb4012d851730ba"
tools.get("{0}/archive/libaio-{1}/libaio-libaio-{1}.tar.gz".format(self.homepage, self.version), sha256=sha256)
extracted_dir = self.name + "-" + self.name + "-" + self.version
os.rename(extracted_dir, self._source_subfolder)
def _configure_cmake(self):
cmake = CMake(self)
cmake.configure(build_folder=self._build_subfolder)
return cmake
def build(self):
cmake = self._configure_cmake()
cmake.build()
def package(self):
self.copy(pattern="COPYING", dst="licenses", src=self._source_subfolder)
cmake = self._configure_cmake()
cmake.install()
def package_info(self):
self.cpp_info.libs = tools.collect_libs(self)