From e7a01579a6a4f601d61e14fd22efa1a08b26b32c Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 11 May 2025 17:43:20 +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 88f9844..31694bc 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,9 @@ name: make description: GNU make version: 4.4.1 -revision: 2 +revision: 3 url: https://www.gnu.org/software/make/ license: GPL3 architecture: any -depends: ["glibc"] -make_depends: ["bash","binutils","coreutils","gcc","gettext","glibc","grep","make","sed","texinfo"] +depends: ["glibc","guile"] type: source diff --git a/source.sh b/source.sh index 505f4cc..d1daf61 100644 --- a/source.sh +++ b/source.sh @@ -29,4 +29,7 @@ check() { # This function is used to move the compiled files into the output directory package() { make DESTDIR="$BPM_OUTPUT" install + + # Install package license + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/make/COPYING }