blob: 74b20af8c6e114bbe5cf663731753616e148a1a3 (
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
|
# Maintainer: Arthur Poulet (arthur.poulet@sceptique.eu)
pkgname=space-age-ttf
pkgver=v1.0
pkgrel=1
pkgdesc="Space Age font from MetalAdventure role play game."
arch=('any')
url="https://www.legrog.org/jeux/metal-adventures"
license=('Unknown')
groups=()
depends=()
makedepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
source=('space-age.ttf')
noextract=()
sha256sums=('7acf26aa58a33090283d2e4846c43f7d85b9df342ad3df5c09fdd183d6ea6e29')
# package() {
# mkdir -v -p "$pkgdir/share/fonts"
# cp -v space-age.ttf "$pkgdir/share/fonts/space-age.ttf"
# }
package() {
if [[ ! -d "$pkgdir/usr/share/fonts/TTF" ]]; then
mkdir -p $pkgdir/usr/share/fonts/TTF
fi
install -Dm644 *.ttf $pkgdir/usr/share/fonts/TTF/
}
|