mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
21fda28056
Fifteen is a faux bitmap font. This font is designed to be used as a monotype font for use in a terminal, or at a larger size, to look like an over scaled bitmap. It works well in a 132 column terminal window. It is, of course, monospaced and has clearly distinct 1I and l, and the zero is slashed. Quinze is a narrow monospaced font, for programming and terminal emulators. It is designed to be narrow, and allow 132 columns to be comfortably fitted on a screen The 1, l and I are clearly distinguished, as are O and 0. The ascii circumflex is presented as an arrow, consistent with its use as exponentiation operator. WWW: https://fontlibrary.org/en/font/fifteen
26 lines
506 B
Makefile
26 lines
506 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fifteen
|
|
PORTVERSION= 20150410
|
|
CATEGORIES= x11-fonts
|
|
MASTER_SITES= https://fontlibrary.org/assets/downloads/${PORTNAME}/c1556403ec283a1b5a23ad483af659f9/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= rakuco@FreeBSD.org
|
|
COMMENT= Narrow monospaced fonts
|
|
|
|
LICENSE= OFL11
|
|
|
|
USES= fonts zip
|
|
|
|
FONTNAME= ${PORTNAME}
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${FONTSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} *.bdf *.ttf ${STAGEDIR}${FONTSDIR}/
|
|
|
|
.include <bsd.port.mk>
|