#!/bin/bash MAKEDEPS=(make ) DEPS=(glibc) SOURCE=https://sourceware.org/elfutils/ftp/elfutils-latest.tar.bz2 DESC="Handle ELF object files and DWARF debugging information" build () { ./configure --prefix=/usr --disable-debuginfod --enable-libdebuginfod=dummy make } check () { make check || true } package () { make DESTDIR=$PKG_DEST install }