1
0
forked from ports/contrib

ttf-noto: updated install routine

This commit is contained in:
Tim Biermann 2022-02-14 09:42:34 +01:00
parent d6a8be5f9c
commit 2f61968df9
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 2324 additions and 2325 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wB/BVaDt+CkcbC3T+hvDQs8zVYiG9VoMJwSMG07W7mI0HVbATdXkO6xtB0C5T0NXBg5olBnlmoI4lgqGBuHvgU=
SHA256 (Pkgfile) = c8a1a1bfad46d07cff9e2cfd7ced542ce99230e29b8e33fb8db9e3f8a75e651b
SHA256 (.footprint) = 96afadd4a469056cea15b2910885b014a80f285a083ce6981ee2041a40884bc1
RWSagIOpLGJF35BphPd6gxjzTTkNQluYWuW8Gjn135l5MAloTJ4PwC1vFsurGbyEYOGsizRYWW7NSSuNCPykk3l7CMI94SVNLQ4=
SHA256 (Pkgfile) = 523f38b508ea04c294973d6d17e3200a6393ed047fcb54c3db3763bb9d8e7e2a
SHA256 (.footprint) = 54f2f9b1755a69129898f2de54b749e76976ccfdafa2b90d091ba264a8c516ba
SHA256 (noto-fonts-20201206-phase3.tar.gz) = 18a513b6cfb99209d9ffe88f31659a514845e34ee8e7a0b534e37aa19e2c4270

View File

@ -8,9 +8,7 @@ release=1
source=(https://github.com/googlefonts/noto-fonts/archive/v$version-phase3/noto-fonts-$version-phase3.tar.gz)
build() {
cd noto-fonts-$version-phase3/unhinted/ttf
install -d $PKG/usr/share/fonts/noto
for i in */*.ttf;
do install -m644 $i $PKG/usr/share/fonts/noto;
done
find noto-fonts-$version-phase3/unhinted/ttf \
-iname "*.ttf" \
-execdir install -Dm644 {} $PKG/usr/share/fonts/TTF/noto/{} \;
}