forked from greg7mdp/sparsepp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conanfile.py
36 lines (26 loc) · 1.14 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from conans import ConanFile, tools
import os
class SparseppConan(ConanFile):
name = "sparsepp"
version = "1.22"
description = "A fast, memory efficient hash map for C++"
# Indicates License type of the packaged library
license = "https://github.com/greg7mdp/sparsepp/blob/master/LICENSE"
# Packages the license for the conanfile.py
exports = ["LICENSE"]
# Custom attributes for Bincrafters recipe conventions
source_subfolder = "source_subfolder"
def source(self):
source_url = "https://github.com/greg7mdp/sparsepp"
tools.get("{0}/archive/{1}.tar.gz".format(source_url, self.version))
extracted_dir = self.name + "-" + self.version
#Rename to "source_folder" is a convention to simplify later steps
os.rename(extracted_dir, self.source_subfolder)
def package(self):
include_folder = os.path.join(self.source_subfolder, "sparsepp")
self.copy(pattern="LICENSE")
self.copy(pattern="*", dst="include/sparsepp", src=include_folder)
def package_id(self):
self.info.header_only()