Update package version to 3.14.5

This commit is contained in:
2026-05-07 08:59:27 +03:00
parent 77cd5040bc
commit 71f1c23292
3 changed files with 32 additions and 12 deletions
+1 -8
View File
@@ -2,14 +2,6 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
REPO="https://github.com/rapidfuzz/RapidFuzz.git"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
git clone --recursive --branch v"$BPM_PKG_VERSION" --single-branch "$REPO" "$BPM_SOURCE"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
@@ -21,5 +13,6 @@ build() {
package() {
python3 -m installer --destdir="$BPM_OUTPUT" dist/*.whl
# Install package license
install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/python-rapidfuzz/LICENSE
}