summaryrefslogtreecommitdiff
path: root/repo/core/kmod.xibuild
blob: 01cc935b6cb3c303da0e5a648cf7f7abcbe8795e (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
27
28
#!/bin/bash

DEPS=(glibc zlib openssl xz zstd)

SOURCE=https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git
DESC="Libraries and utilities for managing kernel modules"

build () {
    ./configure --prefix=/usr          \
            --sysconfdir=/etc      \
            --with-xz              \
            --with-zstd            \
            --with-zlib

    make
    make DESTDIR=$PKG_DEST install 
}

package () {
    mkdir -p /usr/sbin
    mkdir -p /usr/bin

    for target in depmod insmod modinfo modprobe rmmod; do
        ln -sfv ../bin/kmod $PKG_DERT/usr/sbin/$target
    done

    ln -sfv kmod $PKG_DEST/usr/bin/lsmod
}