summaryrefslogtreecommitdiff
path: root/repo/util/elfutils.xibuild
blob: 9162ffafdeb5bacded6afb188b738a808d1cc086 (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
}

package () {
    make DESTDIR=$PKG_DEST install 
}