pkgsrc/fonts/go-ttf/Makefile
wiz 4241f35301 Import go-ttf-20161118 as fonts/go-ttf.
A family of high-quality WGL4 TrueType fonts, created by the Bigelow
& Holmes type foundry specifically for the Go project.

The font family, called Go (naturally), includes proportional- and
fixed-width faces in normal, bold, and italic renderings. The fonts
have been tested for technical uses, particularly programming. Go
source code looks particularly good when displayed in Go fonts, as
its name implies, with things like punctuation characters easily
distinguishable and operators lined up and placed consistently.
2016-11-20 19:59:35 +00:00

31 lines
753 B
Makefile

# $NetBSD: Makefile,v 1.1 2016/11/20 19:59:35 wiz Exp $
DISTNAME= ttfs
PKGNAME= go-ttf-20161118
CATEGORIES= fonts
MASTER_SITES= https://go.googlesource.com/image/+archive/${COMMIT_ID}/font/gofont/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://blog.golang.org/go-fonts
COMMENT= Family of high-quality WGL4 TrueType fonts created for the Go project
LICENSE= modified-bsd
COMMIT_ID= d2f07f8aaaa906f1a64eee0e327fc681cdb2944f
DIST_SUBDIR= ${PKGNAME_NOREV}
WRKSRC= ${WRKDIR}
USE_LANGUAGES= # none
FONTDIR= ${PREFIX}/share/fonts/X11/TTF
FONTS_DIRS.ttf= ${FONTDIR}
INSTALLATION_DIRS= ${FONTDIR}
do-build:
do-install:
cd ${WRKSRC} && for f in *.ttf ; do \
${INSTALL_DATA} $$f ${DESTDIR}${FONTDIR}/$$f; \
done
.include "../../mk/bsd.pkg.mk"