blob: 898736a0dcc39c741066c8f64009b0c6ca22938b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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
}
check () {
make check || true
}
package () {
make DESTDIR=$PKG_DEST install
}
|