blob: 1d5329c10af561caca4693e10a834035d6f975e8 (
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
42
|
# Contributor: orumin <dev@orum.in>
pkgname=tex-adobe-base-14-fonts
pkgver=1.00
pkgrel=2
pkgdesc="change some of system to using adobe base 14 fonts in TeXLive"
url=""
install=mktexlsr.install
license=('custom')
arch=('any')
depends=('texlive-core' 'adobe-base-14-fonts')
package() {
install -d "${pkgdir}/usr/local/share/texmf/fonts/type1/adobe"
cd "${pkgdir}/usr/local/share/texmf/fonts/type1/adobe"
install -d "${pkgdir}/usr/local/share/texmf/fonts/type1/adobe/courier"
cd courier
find /usr/share/fonts/Type1/ -name 'pcr*.pfb' -exec ln -s {} \;
cd ../
install -d "${pkgdir}/usr/local/share/texmf/fonts/type1/adobe/helvetic"
cd helvetic
find /usr/share/fonts/Type1/ -name 'phv*.pfb' -exec ln -s {} \;
cd ../
install -d "${pkgdir}/usr/local/share/texmf/fonts/type1/adobe/symbol"
cd symbol
find /usr/share/fonts/Type1/ -name 'psy*.pfb' -exec ln -s {} \;
cd ../
install -d "${pkgdir}/usr/local/share/texmf/fonts/type1/adobe/times"
cd times
find /usr/share/fonts/Type1/ -name 'ptm*.pfb' -exec ln -s {} \;
cd ../
install -d "${pkgdir}/usr/local/share/texmf/fonts/type1/adobe/zapfding"
cd zapfding
find /usr/share/fonts/Type1/ -name 'pzd*.pfb' -exec ln -s {} \;
cd ../
}
|