summaryrefslogtreecommitdiff
path: root/repo/system/pahole.xibuild
blob: e9b4f99458120db56b79bd5a1d33524578a580d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

MAKEDEPS="cmake python make "
DEPS="libelf python"

PKG_VER=1.23
SOURCE=https://git.kernel.org/pub/scm/devel/pahole/pahole.git
BRANCH=v$PKG_VER

DESC="Pahole and other DWARF Utils"

build () {
    cmake -S . -B build \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DCMAKE_BUILD_TYPE=None \
    -D__LIB=lib
    cmake --build build
}

package () {
    DESTDIR="$PKG_DEST" cmake --install build

      
    python -m compileall -d / "$PKG_DEST"
    python -O -m compileall -d / "$PKG_DEST"
}