blob: 05f3cd873e5aa67f1a425b0e54a054c55a76c2ec (
plain)
1 # Description: A collection of utilities to handle ELF objects.
2 # URL: https://sourceware.org/elfutils/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: bzip2 xz zlib
5
6 name=elfutils
7 version=0.188
8 release=1
9 source=(https://sourceware.org/$name/ftp/$version/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --program-prefix=eu- \
17 --disable-debuginfod \
18 --disable-libdebuginfod \
19 --disable-nls
20
21 make
22 make DESTDIR=$PKG install
23 }
|