24 lines
535 B
Plaintext
24 lines
535 B
Plaintext
|
# Description: A collection of utilities to handle ELF objects.
|
||
|
# URL: http://www.ohloh.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.158
|
||
|
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-
|
||
|
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
|
||
|
rm -r $PKG/usr/{bin,include,share}
|
||
|
}
|