17 lines
442 B
Text
Executable file
17 lines
442 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.178
|
|
release=1
|
|
source=(https://sourceware.org/ftp/elfutils/$version/elfutils-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr --program-prefix="eu-" --disable-debuginfod
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|