2014-02-17 02:38:35 +11:00
|
|
|
# Description: A collection of utilities to handle ELF objects.
|
2017-05-10 10:55:24 +10:00
|
|
|
# URL: https://sourceware.org/elfutils/
|
2017-05-10 10:49:21 +10:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2021-02-16 20:04:00 +11:00
|
|
|
# Depends on: bzip2-32 xz-32 zlib-32
|
2014-02-17 02:38:35 +11:00
|
|
|
|
2017-05-10 10:49:21 +10:00
|
|
|
name=elfutils-32
|
2024-03-05 21:06:09 +01:00
|
|
|
version=0.191
|
2014-02-17 02:38:35 +11:00
|
|
|
release=1
|
2017-05-10 10:55:24 +10:00
|
|
|
source=(https://sourceware.org/${name%-*}/ftp/$version/${name%-*}-$version.tar.bz2)
|
2014-02-17 02:38:35 +11:00
|
|
|
|
|
|
|
build() {
|
2017-05-10 10:55:24 +10:00
|
|
|
cd ${name%-*}-$version
|
2014-02-17 02:38:35 +11:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2017-05-10 10:49:21 +10:00
|
|
|
--libdir=/usr/lib32 \
|
2014-07-02 18:50:44 +10:00
|
|
|
--program-prefix=eu- \
|
2019-11-29 01:00:37 +11:00
|
|
|
--disable-debuginfod \
|
2020-09-12 14:51:13 +10:00
|
|
|
--disable-libdebuginfod \
|
2014-07-02 18:50:44 +10:00
|
|
|
--disable-nls
|
2014-02-17 02:38:35 +11:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2017-05-10 10:49:21 +10:00
|
|
|
|
2019-11-29 01:00:37 +11:00
|
|
|
rm -r $PKG/usr/{bin,include,share/man}
|
2014-02-17 02:38:35 +11:00
|
|
|
}
|