contrib/ttf-unifont/Pkgfile

17 lines
440 B
Plaintext
Raw Normal View History

# Description: TrueType version of the GNU Unifont
2021-02-16 12:24:38 +01:00
# URL: https://unifoundry.com/unifont.html
# Maintainer: Tim Biermann, tbier at posteo dot de
name=ttf-unifont
2021-02-16 12:24:38 +01:00
version=13.0.06
release=1
2021-02-16 12:24:38 +01:00
source=(https://unifoundry.com/pub/unifont/unifont-$version/unifont-$version.tar.gz)
build() {
2020-06-08 21:42:57 +02:00
cd unifont-$version/font/precompiled
install -d $PKG/usr/share/fonts/TTF
for i in *.ttf; do
2021-02-16 12:24:38 +01:00
install -m644 $i $PKG/usr/share/fonts/TTF/;
2020-06-08 21:42:57 +02:00
done
}