summaryrefslogtreecommitdiff
path: root/repo/system/pahole.xibuild
blob: 075ad2eeb0b052df75cb6de468da9645d63c83fa (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/bash

MAKEDEPS=(cmake python make )
DEPS=(elfutils 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"
}