From c43c052112cd15ac8be1d0cb90b6ad2570b2b99a Mon Sep 17 00:00:00 2001 From: ipknHama Date: Sun, 17 Sep 2017 15:41:34 +0900 Subject: Update links in the conanfile.py --- conanfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conanfile.py b/conanfile.py index a8eb8c1..1f7546a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,8 +4,8 @@ from conans import ConanFile, CMake class CrowConan(ConanFile): name = "Crow" version = "0.1" - url = "https://github.com/javierjeronimo/crow" - license = "see https://github.com/ipkn/crow/blob/master/LICENSE" + url = "https://github.com/ipkn/crow" + license = "MIT; see https://github.com/ipkn/crow/blob/master/LICENSE" generators = "cmake" settings = "os", "compiler", "build_type", "arch" @@ -16,7 +16,7 @@ class CrowConan(ConanFile): def source(self): # this will create a hello subfolder, take it into account - self.run("git clone https://github.com/javierjeronimo/crow.git") + self.run("git clone https://github.com/ipkn/crow.git") def build(self): cmake = CMake(self.settings) -- cgit v1.2.3-54-g00ecf