Update the package
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2026-01-10 19:39:52 +01:00
parent 3fa0a8377f
commit ab80f8efaf

View File

@@ -11,6 +11,7 @@ class PipewireJackDevelConan(ConanFile):
# Important, define the package_type # Important, define the package_type
package_type = "header-library" package_type = "header-library"
def package(self): def package(self):
# This will also copy the "include" folder # This will also copy the "include" folder
copy(self, "*.h", "source/pipewire-jack/jack", self.package_folder) copy(self, "*.h", "source/pipewire-jack/jack", self.package_folder)
@@ -20,6 +21,8 @@ class PipewireJackDevelConan(ConanFile):
# so it's recommended to set those as empty. # so it's recommended to set those as empty.
self.cpp_info.bindirs = [] self.cpp_info.bindirs = []
self.cpp_info.libdirs = [] self.cpp_info.libdirs = []
self.cpp_info.set_property("pkg_config_name", "jack")
def source(self): def source(self):
git = Git(self) git = Git(self)