blob: 6618eaea7d243d308467f87a20069ad3bfd44c2f (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Maintainer: Leonard Janis König <ljrk@ljrk.org>
# Contributor: witt <1989161762 at qq dot com>
pkgname='otf-apple-sf-mono'
pkgver=18.0d1e1
pkgrel=2
pkgdesc='Apples the San Francisco typeface family. Monospaced variant.'
arch=('any')
url='https://developer.apple.com/fonts/'
license=('custom:apple-restricted-font')
source=('https://devimages-cdn.apple.com/design/resources/download/SF-Mono.dmg'
'license.awk'
'version.awk')
sha256sums=('6d4a0b78e3aacd06f913f642cead1c7db4af34ed48856d7171a2e0b55d9a7945'
'cd45a6edaa3829837b090a5a18d3c906816931e7a779b33b6ada23b49b5a5889'
'55a4e9e108e50b07481044fad445636e502f2d95d7e8964e1d4cda3e9618b198')
makedepends=('texlive-bin' 'p7zip')
prepare() {
cd ${srcdir}
# These are dmg images, xar and cpio archives. Just use 7z.
7z x -y 'SF-Mono.dmg'
7z x -y 'SFMonoFonts/SF Mono Fonts.pkg'
7z x -y 'Payload~'
otfinfo -i Library/Fonts/SF-Mono-BoldItalic.otf | \
awk -f license.awk > LICENSE
}
pkgver() {
cd ${srcdir}
otfinfo -i Library/Fonts/SF-Mono-BoldItalic.otf | \
awk -f version.awk
}
package() {
install -Dm655 "${srcdir}"/Library/Fonts/*.otf \
-t "${pkgdir}/usr/share/fonts/OTF/"
install -Dm644 LICENSE \
"${pkgdir}"/usr/share/licenses/${pkgname}/AppleFontLicense
}
|