blob: c10d4f6c27f2d188f5e9bf3f335c14a5d0799a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/mkpkg
# description: TeX Gyre font collection (Termes, Heros, Pagella, etc.)
# url: https://www.gust.org.pl/projects/e-foundry/tex-gyre
name=font-texgyre
_name=tex_gyre-otf-2_609-31_03_2026
version=2.501
release=1
depends=(fontconfig)
# https://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/tex_gyre-otf-2_609-31_03_2026.zip
source=(https://www.gust.org.pl/projects/e-foundry/tex-gyre/whole/$_name.zip)
sha256sums=(
"1731555aea263ad82e7f555fb6483ec98342593d63822f658f7a9f8023d85a33"
)
extract() {
unzip -o $_name.zip -d $SRC/
}
build() {
install -d $PKG/usr/share/fonts/texgyre
install -m 644 *.otf $PKG/usr/share/fonts/texgyre/
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
|