From b8a91c8eb5652e44bc0ba52ebf47d4f5c3c4c843 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 12 Apr 2025 15:12:18 +0300 Subject: [PATCH] Fix dependencies and add license --- pkg.info | 5 ++--- source.sh | 3 +++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkg.info b/pkg.info index a2ac596..aaad8b2 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,9 @@ name: kmod description: Linux kernel module handling tools version: 31 -revision: 2 +revision: 3 url: https://github.com/kmod-project/kmod license: LGPL2.1,GPL2 architecture: any -depends: ["glibc","xz-utils","zlib"] -make_depends: ["bash","binutils","bison","coreutils","flex","gcc","gettext","glibc","gzip","make","openssl","pkgconf","sed","xz-utils","zlib"] +depends: ["glibc","openssl","xz-utils","zlib","zstd"] type: source diff --git a/source.sh b/source.sh index cb9164b..4f5a721 100644 --- a/source.sh +++ b/source.sh @@ -35,4 +35,7 @@ package() { done ln -sfv kmod "$BPM_OUTPUT"/usr/bin/lsmod + + # Install package licenses + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/kmod/COPYING }