From a205252dc292eba6bc3777cf8e94833c77b639b6 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Mon, 12 May 2025 17:09:28 +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 a19f9c1..b85470c 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,9 @@ name: texinfo description: GNU documentation system version: 7.1 -revision: 2 +revision: 3 url: https://www.gnu.org/software/texinfo/ license: GPL3 architecture: any -depends: ["glibc","ncurses"] -make_depends: ["bash","binutils","coreutils","gcc","gettext","glibc","grep","make","ncurses","patch","sed"] +depends: ["gzip","ncurses","perl"] type: source diff --git a/source.sh b/source.sh index 0fce412..8220aaf 100644 --- a/source.sh +++ b/source.sh @@ -30,4 +30,7 @@ check() { package() { make DESTDIR="$BPM_OUTPUT" install make TEXMF=/usr/share/texmf DESTDIR="$BPM_OUTPUT" install-tex + + # Install package license + install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/texinfo/COPYING }