diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /core/kmod/MAKEPKG | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/kmod/MAKEPKG')
| -rw-r--r-- | core/kmod/MAKEPKG | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/core/kmod/MAKEPKG b/core/kmod/MAKEPKG new file mode 100644 index 0000000..5bf495e --- /dev/null +++ b/core/kmod/MAKEPKG @@ -0,0 +1,37 @@ +#!/bin/mkpkg +# description: Kernel module utilities and library +# url: https://git.kernel.org/?p=utils/kernel/kmod/kmod.git + +name=kmod +version=34.2 +release=1 +makedeps=(autoconf automake libtool xz zlib zstd) +source=(https://www.kernel.org/pub/linux/utils/kernel/$name/$name-$version.tar.xz) + +sha256sums=( + "5a5d5073070cc7e0c7a7a3c6ec2a0e1780850c8b47b3e3892226b93ffcb9cb54" +) + +build() { + cd $name-$version + ./configure \ + --prefix=/ \ + --disable-manpages \ + --with-zlib \ + --with-xz \ + --with-zstd \ + --with-bashcompletiondir=no \ + --with-fishcompletiondir=no \ + --with-zshcompletiondir=no + make + DESTDIR=$PKG make install + rm -rf $PKG/share + rm -f $PKG/lib/libkmod.la +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
