blob: 4fef6300236907cf4562e5c4af49cba55754282c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
DEPS=(glibc)
SOURCE=https://sourceware.org/elfutils/ftp/elfutils-latest.tar.bz2
DESC="Handle ELF object files and DWARF debugging information"
build () {
./configure --prefix=/usr --disable-debuginfod --enable-libdebuginfod=dummy
make
make check
make DESTDIR=$PKG_DEST install
}
|