Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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