26 lines
804 B
Bash
26 lines
804 B
Bash
# Template file for 'font-spleen'
|
|
pkgname=font-spleen
|
|
version=1.1.0
|
|
revision=1
|
|
archs=noarch
|
|
wrksrc="spleen-${version}"
|
|
font_dirs="/usr/share/fonts/X11/spleen"
|
|
hostmakedepends="bdftopcf"
|
|
depends="font-util"
|
|
short_desc="Monospaced bitmap fonts"
|
|
maintainer="Renato Aguiar <renato@renag.me>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/fcambus/spleen"
|
|
distfiles="https://github.com/fcambus/spleen/releases/download/${version}/spleen-${version}.tar.gz"
|
|
checksum=e09618c307c2f9fea1e7d396bd4ab52646ee9b8575f91a1060ff3642e904f874
|
|
|
|
do_install() {
|
|
vmkdir usr/share/fonts/X11/spleen
|
|
for f in *.bdf; do
|
|
out=${f%.bdf}.pcf.gz
|
|
bdftopcf -t $f | gzip -n9 > $out
|
|
vinstall $out 644 usr/share/fonts/X11/spleen
|
|
done
|
|
vinstall fonts.alias-spleen 644 usr/share/fonts/X11/spleen fonts.alias
|
|
vlicense LICENSE
|
|
}
|