Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
prudhomm committed Oct 26, 2024
1 parent 09e96df commit 6db7eda
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion var/spack/repos/builtin/packages/libzip/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *
import spack.build_systems.autotools
import spack.build_systems.cmake
from spack.package import *


class Libzip(CMakePackage, AutotoolsPackage):
"""libzip is a C library for reading, creating,
Expand Down Expand Up @@ -75,6 +76,7 @@ def headers(self):
self.prefix if self.spec.satisfies("@:1.3.0") else self.prefix.include
)


class CMakeBuilder(spack.build_systems.cmake.CMakeBuilder):
def cmake_args(self):
return [
Expand Down

0 comments on commit 6db7eda

Please sign in to comment.