giflib: add libs property (#29604)

This commit is contained in:
Glenn Johnson 2022-03-30 23:14:31 -05:00 committed by GitHub
parent 26bcbc521e
commit f6f89677a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,6 +44,11 @@ def install_targets(self):
targets = ['install'] + self.prefix_and_libversion_args()
return targets
@property
def libs(self):
return (find_libraries(['libgif'], root=self.prefix.lib) or
find_libraries(['libgif'], root=self.prefix.lib64))
def check(self):
make('check', parallel=False)