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