libcap: 2.66 & GOLANG=no (#34813)

Co-authored-by: Harmen Stoppels <me@harmenstoppels.nl>
This commit is contained in:
Erik Schnetter 2023-01-10 07:02:32 -05:00 committed by GitHub
parent 0f7f600d1f
commit 856fe5941a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,15 +15,28 @@ class Libcap(MakefilePackage):
homepage = "https://sites.google.com/site/fullycapable/"
url = "https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/libcap-2.25.tar.gz"
version("2.66", sha256="5f65dc5b2e9f63a0748ea1b05be7965a38548db1cbfd53b30271ff02186b3a4a")
version("2.65", sha256="25718d9c45ef6beccb55b509ed4bae94ae2bdfeb808709662b264aec0a7016f4")
version("2.64", sha256="e9ec608ae5720989d7274531f9898d64b6bca2491a231b8091229e49891933dd")
version("2.25", sha256="4ca80dc6f9f23d14747e4b619fd9784434c570e24a7346f326c692784ed83a86")
patch("libcap-fix-the-libcap-native-building-failure-on-CentOS-6.7.patch", when="@2.25")
def install(self, spec, prefix):
make_args = ["RAISE_SETFCAP=no", "lib=lib", "prefix={0}".format(prefix), "install"]
make(*make_args)
def makeflags(self, prefix):
return [
"RAISE_SETFCAP=no",
"GOLANG=no",
"USE_GPERF=no",
"SHARED=yes",
"lib=lib",
"prefix={}".format(prefix),
]
chmod = which("chmod")
chmod("+x", join_path(prefix.lib, "libcap.so"))
def build(self, spec, prefix):
make(*self.makeflags(prefix))
def install(self, spec, prefix):
make(*self.makeflags(prefix), "install")
# this is a shared library that prints some info when executed
set_executable(join_path(prefix.lib, "libcap.so"))