From eab29128291943e20b5bdb92da8a1d86b8c92af1 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 3 Oct 2025 13:39:11 +0300 Subject: [PATCH] Update package version to 2025.10.01 --- pkg.info | 11 +++++++++-- source.sh | 16 +++++----------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/pkg.info b/pkg.info index b1092ff..8b23a35 100644 --- a/pkg.info +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh index 9f22257..90b8ae4 100644 --- a/source.sh +++ b/source.sh @@ -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 }