diff options
Diffstat (limited to 'repo/font-freefont')
-rw-r--r-- | repo/font-freefont/font-freefont.xibuild | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/repo/font-freefont/font-freefont.xibuild b/repo/font-freefont/font-freefont.xibuild new file mode 100644 index 0000000..f02222d --- /dev/null +++ b/repo/font-freefont/font-freefont.xibuild @@ -0,0 +1,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" +} + |