blob: b9376c82e216180003be8f1991148d731f6a3808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
MAKEDEPS="make "
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
}
|