blob: 2a93a5f99e03c5c11235c45e31e3273d194f5e66 (
plain)
1 # Description: TrueType version of the GNU Unifont
2 # URL: https://unifoundry.com/unifont.html
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=ttf-unifont
6 version=15.0.01
7 release=1
8 source=(https://unifoundry.com/pub/unifont/unifont-$version/unifont-$version.tar.gz)
9
10 build() {
11 find unifont-$version/font/precompiled \
12 -iname "*.ttf" \
13 -execdir install -Dm644 {} $PKG/usr/share/fonts/TTF/unifont/{} \;
14 cd
15 }
|