jbigkit: adding the library spec for dependents (#24103)

This commit is contained in:
Olivier Cessenat 2021-06-09 10:14:28 +02:00 committed by GitHub
parent 8f34a66502
commit 0dce021f94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,3 +33,9 @@ def install(self, spec, prefix):
mkdir(prefix.bin) mkdir(prefix.bin)
for f in ['tstcodec', 'tstcodec85']: for f in ['tstcodec', 'tstcodec85']:
install(f, prefix.bin) install(f, prefix.bin)
@property
def libs(self):
return find_libraries(
"libjbig*", root=self.prefix, shared=False, recursive=True
)