feat: add package elfutils

Signed-off-by: sisungo <[email protected]>
This commit is contained in:
2026-06-29 14:43:55 +08:00
parent f24ea2d4bf
commit 298a03a64f
+23
View File
@@ -0,0 +1,23 @@
from lib import cpp
from lib.make import *
version("0.195")
source_url("https://sourceware.org/elfutils/ftp/0.195/elfutils-0.195.tar.bz2")
def build():
cpp.configure(
[
"--prefix=/",
"--disable-nls",
"--enable-stacktrace",
"--enable-libdebuginfod",
"--enable-debuginfod",
"--enable-debuginfod-ima-verification",
]
)
cpp.make()
cpp.make_install()
on_build(build)