23 lines
708 B
Bash
23 lines
708 B
Bash
# Template file for 'cherry-font'
|
|
pkgname=cherry-font
|
|
version=1.4
|
|
revision=2
|
|
hostmakedepends="bdftopcf"
|
|
depends="font-util"
|
|
short_desc="Yet another bitmap font, made for Latin 1"
|
|
maintainer="Chinmay Pai <chinmaydpai@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/turquoise-hexagon/cherry"
|
|
distfiles="https://github.com/turquoise-hexagon/cherry/archive/${version}.tar.gz"
|
|
checksum=984191a0b305832b95bd3036cd8b7ab07cac8a0dd05ba440d6be9ffbdd8434df
|
|
|
|
font_dirs="/usr/share/fonts/X11/misc"
|
|
|
|
do_install() {
|
|
vmkdir usr/share/fonts/X11/misc
|
|
for f in cherry-10-{b,r} cherry-11-{b,r} cherry-13-{b,r}; do
|
|
bdftopcf -t $f.bdf | gzip -n9 >${DESTDIR}/usr/share/fonts/X11/misc/$f.pcf.gz
|
|
done
|
|
vlicense LICENSE
|
|
}
|