blob: e4f5f41aa1d3de50898ccb96c0e15be30c0a1bdf (
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=14.0.01
7 release=1
8 source=(https://unifoundry.com/pub/unifont/unifont-$version/unifont-$version.tar.gz)
9
10 build() {
11 cd unifont-$version/font/precompiled
12 install -d $PKG/usr/share/fonts/TTF/unifont/
13 for i in *.ttf; do
14 install -Dm644 $i $PKG/usr/share/fonts/TTF/unifont/;
15 done
16 }
|