(self)
| 75 | self._process_arrayfire() |
| 76 | |
| 77 | def package(self): |
| 78 | # libs |
| 79 | self.copy("*.so", dst="lib", keep_path=False, symlinks=True) |
| 80 | self.copy("*.so.*", dst="lib", keep_path=False, symlinks=True) |
| 81 | |
| 82 | # headers |
| 83 | self.copy("*.h", dst="include", src="arrayfire/include") |
| 84 | self.copy("*.hpp", dst="include", src="arrayfire/include") |
| 85 | |
| 86 | def package_info(self): |
| 87 | self.cpp_info.libs = [] |