35 lines
741 B
Makefile
35 lines
741 B
Makefile
# $OpenBSD: Makefile,v 1.3 2019/07/12 20:46:12 sthen Exp $
|
|
|
|
COMMENT = typeface carefully crafted & designed for computer screens
|
|
|
|
V = 3.7
|
|
DISTNAME = Inter-$V
|
|
PKGNAME = inter-$V
|
|
|
|
CATEGORIES = fonts
|
|
|
|
HOMEPAGE = https://rsms.me/inter/
|
|
|
|
# SIL OFL 1.1
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MASTER_SITES = https://github.com/rsms/inter/releases/download/v$V/
|
|
|
|
EXTRACT_SUFX = .zip
|
|
|
|
NO_BUILD = Yes
|
|
NO_TEST = Yes
|
|
|
|
PKG_ARCH = *
|
|
WRKDIST = ${WRKDIR}
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/fonts/inter
|
|
${INSTALL_DATA} ${WRKSRC}/"Inter (OTF)"/*.otf \
|
|
${WRKSRC}/"Inter (TTF hinted)"/*.ttf \
|
|
${PREFIX}/share/fonts/inter
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/inter
|
|
${INSTALL_DATA} ${WRKSRC}/LICENSE.txt ${PREFIX}/share/doc/inter
|
|
|
|
.include <bsd.port.mk>
|