blob: 36176b2ab4a7f91e37ce1b38612d6449020c4224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Description: Substitute PostScript fonts in OpenType format
# URL: http://www.gust.org.pl/projects/e-foundry/tex-gyre
# Packager: Erich Eckner, crux at eckner dot net
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on:
name=tex-gyre-fonts
version=2.501
release=1
source=(http://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tg${version/./_}otf.zip)
build() {
install -d "$PKG/usr/share/fonts/tex-gyre"
install -t "$PKG/usr/share/fonts/tex-gyre" -m644 tg${version/./_}otf/*.otf
}
|