Update package version to 2025.10.01
This commit is contained in:
@@ -1,11 +1,18 @@
|
|||||||
name: noto-fonts
|
name: noto-fonts
|
||||||
description: Google Noto TTF fonts
|
description: Google Noto TTF fonts
|
||||||
version: 2025.09.01
|
version: 2025.10.01
|
||||||
|
revision: 1
|
||||||
url: https://fonts.google.com/noto
|
url: https://fonts.google.com/noto
|
||||||
license: custom
|
license: custom
|
||||||
architecture: any
|
architecture: any
|
||||||
provides: ["ttf-font"]
|
|
||||||
type: source
|
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:
|
split_packages:
|
||||||
- name: noto-fonts
|
- name: noto-fonts
|
||||||
- name: noto-fonts-extra
|
- name: noto-fonts-extra
|
||||||
|
|||||||
@@ -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 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
|
# 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
|
# Function for packaging main noto fonts package
|
||||||
package_noto-fonts() {
|
package_noto-fonts() {
|
||||||
install -Dm644 fonts/*/hinted/ttf/*.tt[fc] -t "$BPM_OUTPUT"/usr/share/fonts/noto
|
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
|
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
|
install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/noto-fonts/LICENSE
|
||||||
}
|
}
|
||||||
|
|
||||||
# Function for packaging additional variants of noto fonts
|
# Function for packaging additional variants of noto fonts
|
||||||
package_noto-fonts-extra() {
|
package_noto-fonts-extra() {
|
||||||
install -Dm644 fonts/*/hinted/ttf/*{-Condensed,-Semi,-Extra}*.tt[fc] -t "$BPM_OUTPUT"/usr/share/fonts/noto
|
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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user