mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-23 05:14:18 +08:00
Add fonts category and add ibm-plex and intel-one-mono fonts
This commit is contained in:
parent
b99718d7dc
commit
14c5db985f
14
recipes/fonts/ibm-plex/recipe.toml
Normal file
14
recipes/fonts/ibm-plex/recipe.toml
Normal file
@ -0,0 +1,14 @@
|
||||
[source]
|
||||
tar="https://github.com/IBM/plex/archive/refs/tags/v6.3.0.tar.gz"
|
||||
blake3="6c67f5bf8069762eea1e31f5cca5b4e6f57ea1151b34b338046c7976072ccdef"
|
||||
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
for style in Mono Sans Serif
|
||||
do
|
||||
DEST="${COOKBOOK_STAGE}/ui/fonts/${style}/IBM-Plex"
|
||||
mkdir -pv "${DEST}"
|
||||
cp -v "${COOKBOOK_SOURCE}/IBM-Plex-${style}/fonts/complete/ttf/"*".ttf" "${DEST}"
|
||||
done
|
||||
"""
|
||||
11
recipes/fonts/intel-one-mono/recipe.toml
Normal file
11
recipes/fonts/intel-one-mono/recipe.toml
Normal file
@ -0,0 +1,11 @@
|
||||
[source]
|
||||
tar="https://github.com/intel/intel-one-mono/archive/refs/tags/V1.3.0.tar.gz"
|
||||
blake3="9caff71b0a9fe8627253c55889964612ea4ae144584a283cd2fe88b7a14a4140"
|
||||
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
DEST="${COOKBOOK_STAGE}/ui/fonts/Mono/Intel-One"
|
||||
mkdir -pv "${DEST}"
|
||||
cp -v "${COOKBOOK_SOURCE}/fonts/ttf/"*".ttf" "${DEST}"
|
||||
"""
|
||||
Loading…
Reference in New Issue
Block a user