blob: a760cd11c5c6c6ff4241dba52cc2943cf60ad89d (
plain)
1 # Description: A font family which aims at metric compatibility with Arial, Times New Roman, and Courier New
2 # URL: https://github.com/liberationfonts/liberation-fonts
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: python3-fonttools fontforge
5
6 name=ttf-liberation
7 version=2.1.5
8 release=1
9 source=(https://github.com/liberationfonts/liberation-fonts/archive/refs/tags/${version}.tar.gz)
10
11 build() {
12 cd liberation-fonts-${version}
13 make
14 cd liberation-fonts-ttf-${version}
15 for i in *.ttf; do
16 install -m 644 -D "${i}" "${PKG}/usr/share/fonts/TTF/liberation/${i}"
17 done
18 }
|