blob: f02222de34a9903ebf764c2bd246cd01decbec94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
NAME="font-freefont"
DESC="A set of free high-quality TrueType fonts covering the UCS character set"
MAKEDEPS=" font-util"
PKG_VER=20120503
SOURCE="https://ftp.gnu.org/gnu/freefont/freefont-otf-$PKG_VER.tar.gz"
package() {
install -Dm644 ./*.otf -t "$PKG_DEST"/usr/share/fonts/freefont/
# Licensing exception is discussed in README in pkgver==20120503
install -Dm644 README "$PKG_DEST/usr/share/licenses/font-freefont/README"
}
|