@@ -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)
|
||||
Reference in New Issue
Block a user