19 lines
522 B
Bash
19 lines
522 B
Bash
# Template file for 'font-go-ttf'
|
|
pkgname=font-go-ttf
|
|
version=0.1.0
|
|
revision=1
|
|
short_desc="Typeface designed for go source code"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://go.dev/blog/go-fonts"
|
|
distfiles="https://github.com/golang/image/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=50d8069c455f934fc7fc0902e9065e4b6401f23ae29616de402c19f8497aae59
|
|
|
|
do_install() {
|
|
cd font/gofont/ttfs
|
|
for f in *.ttf; do
|
|
vinstall $f 0644 /usr/share/fonts/TTF
|
|
done
|
|
vlicense README LICENSE
|
|
}
|