Update package version to 2025.10.01

This commit is contained in:
2025-10-03 13:39:11 +03:00
parent 32a076bb29
commit eab2912829
2 changed files with 14 additions and 13 deletions
+9 -2
View File
@@ -1,11 +1,18 @@
name: noto-fonts
description: Google Noto TTF fonts
version: 2025.09.01
version: 2025.10.01
revision: 1
url: https://fonts.google.com/noto
license: custom
architecture: any
provides: ["ttf-font"]
type: source
provides:
- ttf-font
downloads:
- url: https://github.com/notofonts/notofonts.github.io/archive/refs/tags/noto-monthly-release-${BPM_PKG_VERSION}.tar.gz
extract_to_bpm_source: true
extract_strip_components: 1
checksum: e8f90046a016534d3c66dd6070b2ea24f4e8d51c8c9ef72d603dfd0a744daa90
split_packages:
- name: noto-fonts
- name: noto-fonts-extra
+4 -10
View File
@@ -2,25 +2,19 @@
# 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
DOWNLOAD="https://github.com/notofonts/notofonts.github.io/archive/refs/tags/noto-monthly-release-${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# 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() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# Function for packaging main noto fonts package
package_noto-fonts() {
install -Dm644 fonts/*/hinted/ttf/*.tt[fc] -t "$BPM_OUTPUT"/usr/share/fonts/noto
rm -f "$BPM_OUTPUT"/usr/share/fonts/noto/Noto*-{-Condensed,-Semi,-Extra}*.ttf
# Install package license
install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/noto-fonts/LICENSE
}
# Function for packaging additional variants of noto fonts
package_noto-fonts-extra() {
install -Dm644 fonts/*/hinted/ttf/*{-Condensed,-Semi,-Extra}*.tt[fc] -t "$BPM_OUTPUT"/usr/share/fonts/noto
# Install package license
install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/noto-fonts-extra/LICENSE
}