21 lines
476 B
Text
Executable file
21 lines
476 B
Text
Executable file
# Description: utilities and libraries for handling ELF files
|
|
# URL:
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
# Depends on:
|
|
|
|
name=elfutils
|
|
version=0.185
|
|
release=1
|
|
source=(https://sourceware.org/ftp/elfutils/$version/elfutils-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--program-prefix="eu-" \
|
|
--disable-debuginfod
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|