blob: 533406b942ed4f69d62ffff40fd85691e1afcb70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Andrej Radović (r.andrej@gmail.com)
pkgname=otf-xcharter
pkgver=1.25
pkgrel=2
pkgdesc="Extension of Bitstream Charter, which provides small caps, "\
"oldstyle figures and superior figures in all four styles, Cyrillic and Greek."
url="https://www.ctan.org/pkg/xcharter"
arch=('any')
license=('custom:LPPL')
source=(http://mirrors.ctan.org/fonts/xcharter.zip)
sha1sums=('99550ee75f66ccd7f082cf4a96a7578518900565')
package() {
install -m755 -d "${pkgdir}"/usr/share/fonts/"${pkgname}"
cd xcharter/opentype
install -m644 *.otf "${pkgdir}"/usr/share/fonts/"${pkgname}"
}
|