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