2020-06-07 16:05:24 +00:00
|
|
|
# Description: TrueType version of the GNU Unifont
|
|
|
|
# URL: http://unifoundry.com/unifont.html
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=ttf-unifont
|
2020-07-04 20:26:44 +00:00
|
|
|
version=13.0.03
|
2020-06-07 16:05:24 +00:00
|
|
|
release=1
|
|
|
|
source=(http://unifoundry.com/pub/unifont/unifont-$version/unifont-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
2020-06-08 19:42:57 +00:00
|
|
|
cd unifont-$version/font/precompiled
|
|
|
|
install -d $PKG/usr/share/fonts/TTF
|
|
|
|
for i in *.ttf; do
|
|
|
|
install -m644 $i $PKG/usr/share/fonts/TTF/;
|
|
|
|
done
|
2020-06-07 16:05:24 +00:00
|
|
|
}
|