Skip to content

Commit

Permalink
Merge pull request #51 from kammce/local-conanfile
Browse files Browse the repository at this point in the history
[conan] Fix imports and license path
  • Loading branch information
zajo authored Dec 2, 2022
2 parents 2163938 + 5dcf605 commit 50fe0ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conanfile.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from conan import ConanFile
from conan.tools.files import get, copy
from conan.tools.files import copy
from conan.tools.layout import basic_layout
from conan.tools.build import check_min_cppstd
from conan.errors import ConanInvalidConfiguration
Expand All @@ -11,7 +11,7 @@

class BoostLEAFConan(ConanFile):
name = "boost-leaf"
version = "1.81.0-prerelease"
version = "1.81.0"
license = "BSL-1.0"
url = "https://github.com/conan-io/conan-center-index"
homepage = "https://github.com/boostorg/leaf"
Expand Down Expand Up @@ -64,7 +64,7 @@ def layout(self):
basic_layout(self)

def package(self):
copy(self, "LICENSE", dst=os.path.join(
copy(self, "LICENSE_1_0.txt", dst=os.path.join(
self.package_folder, "licenses"), src=self.source_folder)
copy(self, "*.h", dst=os.path.join(self.package_folder, "include"),
src=os.path.join(self.source_folder, "include"))
Expand Down

0 comments on commit 50fe0ed

Please sign in to comment.