contrib/ttf-unifont/Pkgfile

17 lines
458 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-09-15 20:21:21 +02:00
version=14.0.01
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/unifont/
2020-06-08 21:42:57 +02:00
for i in *.ttf; do
install -Dm644 $i $PKG/usr/share/fonts/TTF/unifont/;
2020-06-08 21:42:57 +02:00
done
}