Fix dependencies and add license

This commit is contained in:
2025-05-11 15:15:21 +03:00
parent 0d161d9416
commit a087e58c25
2 changed files with 4 additions and 2 deletions
+1 -2
View File
@@ -1,10 +1,9 @@
name: libpipeline name: libpipeline
description: C library for manipulating pipelines of subprocesses in a flexible and convenient way description: C library for manipulating pipelines of subprocesses in a flexible and convenient way
version: 1.5.7 version: 1.5.7
revision: 2 revision: 3
url: https://libpipeline.nongnu.org/ url: https://libpipeline.nongnu.org/
license: GPL3-or-later license: GPL3-or-later
architecture: any architecture: any
depends: ["glibc"] depends: ["glibc"]
make_depends: ["bash","binutils","coreutils","diffutils","gawk","gcc","glibc","grep","make","sed","texinfo"]
type: source type: source
+3
View File
@@ -29,4 +29,7 @@ check() {
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
make DESTDIR="$BPM_OUTPUT" install make DESTDIR="$BPM_OUTPUT" install
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libpipeline/COPYING
} }