blob: e84e8ecfda97d1a24cf816c3a738d3c987bdb31a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Aerion <emile [at] aerion [dot] co [uk]>
pkgname=otf-mathilde
pkgver=1.0
pkgrel=1
pkgdesc="Mathilde is a beautiful, free, handwritten cursive-hybrid OpenType font with contextual alternatives"
arch=('any')
url="http://leeviathan.com/portfolio-item/mathilde-free-handwritten-opentype-font/"
license=('CCPL:by-sa')
depends=('fontconfig' 'xorg-mkfontdir' 'xorg-mkfontscale')
install=otf.install
source=($pkgname.zip::http://img.dafont.com/dl/?f=mathilde)
md5sums=('3b293339eb59a418ee43a01bb69306ca')
build() {
# nothing to do
true
}
package() {
install -d ${pkgdir}/usr/share/fonts/OTF/
install -Dm644 ${srcdir}/mathilde.otf ${pkgdir}/usr/share/fonts/OTF/mathilde.otf
}
|