diff options
author | davidovski <david@davidovski.xyz> | 2023-05-17 17:01:27 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2023-05-17 17:01:27 +0100 |
commit | 0d37a1ef234c38b27faba43bc3a22f985d311deb (patch) | |
tree | dde8df9f508e7323c3d7df599ceade7705c40acd /repo/font-freefont | |
parent | f29d569cd33a73da5ad675f43a34ad53c5cc9bc6 (diff) |
Remove all firmware
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" +} + |