forked from ports/compat-32
7692f6bf78
This reverts commit d00145c5049c0bcdef6ad37e6b116c20ef86171f.
25 lines
550 B
Plaintext
25 lines
550 B
Plaintext
# Description: A collection of utilities to handle ELF objects.
|
|
# URL: https://www.openhub.net/p/elfutils
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: bzip2-32 xz-32 zlib-32 elfutils
|
|
|
|
name=elfutils-32
|
|
version=0.168
|
|
release=1
|
|
source=(https://fedorahosted.org/releases/e/l/elfutils/$version/elfutils-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd elfutils-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--program-prefix=eu- \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include}
|
|
}
|