blob: 68f73c1ea7a6d5803138baeb9f2bcdb019c57656 (
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
|
# Maintainer: Nicolas Lorin <androw95220@gmail.com>
# Contributor: Jan Misiak <fijam@archlinux.ux>
pkgname=ttf-exljbris
pkgver=1.1
pkgrel=9
pkgdesc='A collection of free opentype fonts by Jos Buivenga. Includes Delicious, Diavlo, Fontin, Fontin Sans and Tallys'
arch=('i686' 'x86_64')
license=('custom')
url='http://www.exljbris.com/'
depends=('fontconfig' 'xorg-fonts-encodings')
source=('http://www.exljbris.com/dl/DELICIOUS_21_OTF.zip'
'http://www.exljbris.com/dl/Diavlo_II_37b2.zip'
'http://www.exljbris.com/dl/fontin_pc.zip'
'http://www.exljbris.com/dl/FontinSans_49.zip'
'http://www.exljbris.com/dl/tallys_15b2.zip'
'exljbris-font-licence.txt')
sha256sums=('fc25f631167471a1e33f57264a8eba1f3b27bffbdcdb0487bc6e0fbc584d6672'
'863acd293fb186eebdbf77cba2739f26626874c848bedb9b7577e07e5996a3d3'
'ddbb4ba57d0ab7d1af9d511de8e68d0fab9beec0c03eaf9c968f180b96100aa7'
'8b04ea509ec5fa8ddf921c94ba1824130071d16b7f83b09bc257b9311ff65a6e'
'c0b951253e07557590b3dc2c7ffea19d553b3f5bf34d45f80b4114d90e527bad'
'ea29b01be55f6498af65c3553fb84d67babd881ac382697ba4d6a2e7ff1af5b0')
prepare() {
# remove hidden file
find -type f -name ".*" -delete
}
package() {
mkdir -p ${pkgdir}/usr/share/fonts/OTF
install -m0644 -D $(find -type f -name "*.otf") ${pkgdir}/usr/share/fonts/OTF
install -m0644 -D exljbris-font-licence.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
|