|
root / base / dejavu-fonts / build.sh
build.sh Bash 9 lines 290 B
1
2
3
4
5
6
7
8
#!/bin/sh
# Build script for dejavu-fonts (data-only, no compile). Pre-built TTF
# distribution - just install the .ttf files; fc-cache picks them up.
set -e
cd "$SRCDIR"

mkdir -p "$PKGDIR$PREFIX/share/fonts/dejavu"
find . -name '*.ttf' -exec cp {} "$PKGDIR$PREFIX/share/fonts/dejavu/" \;