summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 66a1f4086d6eec9eb91b66fd273ab3eeadd03a5c (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
#Maintainter: kleintux <reg-archlinux AT klein DOT tuxli DOT ch> 
_pkgname=font8x8
pkgname=${_pkgname}-git
pkgver=r7.8e279d2
pkgrel=1
pkgdesc="8x8 monochrome bitmap fonts for rendering in c"
arch=('any')
url="https://github.com/dhepper/font8x8"
license=('Custom:CC0')
makedepends=('git')
provides=(${_pkgname})
conflicts=(${_pkgname})
source=(git+https://github.com/dhepper/font8x8.git)
md5sums=('SKIP')

pkgver() {
	cd "${_pkgname}"
 	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
	cd "${srcdir}"/"${_pkgname}"
	mkdir -p "${pkgdir}"/usr/include/${_pkgname}/
	mkdir -p "${pkgdir}"/usr/share/doc/${_pkgname}/
	install -Dm644 *.h "${pkgdir}"/usr/include/${_pkgname}/
	install -Dm644 *.c "${pkgdir}"/usr/include/${_pkgname}/
  install -Dm644 README "${pkgdir}"/usr/share/doc/${_pkgname}/
}