core/elfutils/Pkgfile

24 lines
497 B
Plaintext
Raw Normal View History

2018-01-19 19:23:53 +01:00
# Description: A collection of utilities to handle ELF objects.
# URL: https://sourceware.org/elfutils/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: bzip2 xz zlib
name=elfutils
2021-05-23 14:11:04 +02:00
version=0.185
2018-01-19 19:23:53 +01:00
release=1
source=(https://sourceware.org/$name/ftp/$version/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--program-prefix=eu- \
2019-11-27 15:02:33 +01:00
--disable-debuginfod \
2020-09-08 16:59:58 +02:00
--disable-libdebuginfod \
2018-01-19 19:23:53 +01:00
--disable-nls
make
make DESTDIR=$PKG install
}