Update package version to 6.15

This commit is contained in:
2025-08-15 15:54:02 +03:00
parent afaeb61f5d
commit de21354dbf
3 changed files with 18 additions and 6 deletions
+5 -4
View File
@@ -11,15 +11,16 @@ prepare() {
echo "$DOWNLOAD"
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
# Libxcrypt manpages are instaleld through the 'libxcrypt' package
rm "$BPM_SOURCE"/man3/crypt*
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
make prefix=/usr DESTDIR="$BPM_OUTPUT" install
make -R GIT=false prefix=/usr DESTDIR="$BPM_OUTPUT" install
for license in LICENSES/*; do
install -Dm644 $license -t "$BPM_OUTPUT"/usr/share/licenses/man-pages/
done
# Install package licences
install -Dm644 LICENSES/* -t "$BPM_OUTPUT"/usr/share/licenses/man-pages/
}