core/elfutils/Pkgfile

24 lines
539 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
2024-03-04 15:05:38 +01:00
version=0.191
2018-01-19 19:23:53 +01:00
release=1
source=(https://sourceware.org/$name/ftp/$version/$name-$version.tar.bz2)
build() {
2023-12-24 12:43:51 +01:00
cd $name-$version
2018-01-19 19:23:53 +01:00
2023-12-24 12:43:51 +01:00
./configure \
--prefix=/usr \
--program-prefix=eu- \
--disable-debuginfod \
--disable-libdebuginfod \
--disable-nls
2018-01-19 19:23:53 +01:00
2023-12-24 12:43:51 +01:00
make
make DESTDIR=$PKG install
2018-01-19 19:23:53 +01:00
}