Update package version to 1.3

This commit is contained in:
2025-05-11 16:35:39 +03:00
parent 6013a7dc45
commit 94f0180b62
2 changed files with 7 additions and 2 deletions
+3 -2
View File
@@ -1,7 +1,8 @@
name: libunistring name: libunistring
description: String manipulation library description: String manipulation library
version: 1.1 version: 1.3
url: https://www.gnu.org/software/libunistring/ url: https://www.gnu.org/software/libunistring/
license: GPL license: GPL3-or-later,LGPL3-or-later
architecture: any architecture: any
depends: ["glibc"]
type: source type: source
+4
View File
@@ -29,4 +29,8 @@ 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 licenses
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/libunistring/COPYING
install -Dm644 "$BPM_SOURCE"/COPYING.LIB "$BPM_OUTPUT"/usr/share/licenses/libunistring/COPYING.LIB
} }