From 7db9ec8369a9735209cf9742290bc8ebb7bfba49 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Mon, 11 Aug 2025 15:29:30 +0300 Subject: [PATCH] Install GPLv3 license only --- pkg.info | 1 + source.sh | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg.info b/pkg.info index 901bcf8..f8ac260 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,7 @@ name: ffmpeg description: A complete, cross-platform solution to record, convert and stream audio and video version: 7.1.1 +revision: 2 url: https://ffmpeg.org/ license: GPL3-only architecture: any diff --git a/source.sh b/source.sh index 2cda2a9..74c439f 100644 --- a/source.sh +++ b/source.sh @@ -51,5 +51,7 @@ package() { make DESTDIR="$BPM_OUTPUT" install install-man install -Dvm755 tools/qt-faststart "$BPM_OUTPUT"/usr/bin/qt-faststart - install -Dm644 "$BPM_SOURCE"/LICENSE.md "$BPM_SOURCE"/COPYING* -t "$BPM_OUTPUT"/usr/share/licenses/ffmpeg/ + + # Install package license + install -Dm644 "$BPM_SOURCE"/COPYING.GPLv3 "$BPM_OUTPUT"/usr/share/licenses/ffmpeg/COPYING.GPLv3 }