mirror of
https://github.com/pygos/build.git
synced 2024-11-14 23:47:11 +01:00
25 lines
530 B
Text
25 lines
530 B
Text
VERSION="27"
|
|
SRCDIR="kmod-${VERSION}"
|
|
TARBALL="${SRCDIR}.tar.xz"
|
|
URL="https://www.kernel.org/pub/linux/utils/kernel/kmod/"
|
|
SHA256SUM="c1d3fbf16ca24b95f334c1de1b46f17bbe5a10b0e81e72668bdc922ebffbbc0c"
|
|
DEPENDS="zlib-dev xz-dev toolchain"
|
|
SUBPKG="kmod kmod-dev"
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
run_configure "$1" --with-xz --with-zlib
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make DESTDIR="$PKGDEPLOYDIR" install
|
|
cp $SCRIPTDIR/pkg/$PKGNAME/*.{files,desc} "$PKGDEPLOYDIR"
|
|
}
|
|
|
|
check_update() {
|
|
check_update_simple "$URL" "kmod" "tar.xz"
|
|
}
|