From ba0f2fd14dfe7af838fb19b1ed83a134c4a00505 Mon Sep 17 00:00:00 2001 From: Torfinn Berset Date: Thu, 31 Jan 2019 14:15:30 +0100 Subject: Remove Package author, and add Unlicense --- conanfile.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index f3a2a9c..20023bd 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,8 +4,7 @@ from conans import ConanFile, CMake class TinyAesCConan(ConanFile): name = "tiny-AES-c" version = "1.0.0" - license = "MIT" - author = "Torfinn Berset " + license = "The Unlicense" url = "https://github.com/kokke/tiny-AES-c" description = "Small portable AES128/192/256 in C" topics = ("encryption", "crypto", "AES") @@ -13,6 +12,7 @@ class TinyAesCConan(ConanFile): generators = "cmake" exports_sources = ["CMakeLists.txt", "*.c", '*.h', '*.hpp'] + exports = ["unlicense.txt"] _options_dict = { # enable AES128 @@ -59,6 +59,7 @@ class TinyAesCConan(ConanFile): self.copy("*.h", dst="include") self.copy("*.hpp", dst="include") self.copy("*.a", dst="lib", keep_path=False) + self.copy("unlicense.txt") def package_info(self): self.cpp_info.libs = ["tiny-aes"] -- cgit v1.2.3