summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 758c00d88daeb56f90acfd4bfe74987fc0820b1d (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: Dorian Bourgeoisat <dorian dot bourgeoisat at icloud dot com>
pkgname=ttf-comic-mono-git
pkgver=r21.03b5ad8
pkgrel=1
pkgdesc="like the famous font but monospace and with adjusted metric"
license=('MIT')
arch=('any')
makedepends=('git')
provides=("comic-mono")

source=("git+https://github.com/dtinth/comic-mono-font.git")
md5sums=('SKIP')

pkgver() {
	cd "$srcdir/comic-mono-font"
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
	cd "$srcdir/comic-mono-font"
	install -d "$pkgdir/usr/share/fonts/TTF"
	install -Dm755 *.ttf "$pkgdir/usr/share/fonts/TTF"
}