etl/conanfile.py
2019-03-06 07:41:03 +00:00

28 lines
729 B
Python
Executable File

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from conans import ConanFile
class EmbeddedTemplateLibraryConan(ConanFile):
name = "embedded-template-library"
version = "14.11.2"
license = "MIT"
author = "John Wellbelove <smartgit@wellbelove.co.uk>"
url = "https://github.com/ETLCPP/etl"
description = "A C++ template library for embedded applications"
topics = ("embedded", "template", "container")
no_copy_source = True
scm = {
"type": "git",
"url": "auto",
"revision": "auto"
}
def package(self):
self.copy("LICENSE", "licenses")
self.copy("*.h", src="include", dst="include")
def package_id(self):
self.info.header_only()