From Giuseppe Cocomazzi <sbudella AT gmail DOT com>, who takes MAINTAINER, thanks! ok ian@ Adrian Smith's standard fonts for the APL language. The package includes APL385, a monospaced font developed with all APL software vendors in the late 1980s, and APL333, a non-monospaced version of the same font.
30 lines
674 B
Makefile
30 lines
674 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/09/11 23:41:10 bcallah Exp $
|
|
|
|
V = 1.0
|
|
COMMENT = Adrian Smith's standard APL fonts
|
|
PKGNAME = apl-fonts-${V}
|
|
DISTFILES = apl385-${V}{apl385}${EXTRACT_SUFX} \
|
|
apl333-${V}{apl333}${EXTRACT_SUFX}
|
|
EXTRACT_SUFX = .zip
|
|
CATEGORIES = fonts x11
|
|
|
|
HOMEPAGE = http://www.apl385.com/fonts/index.htm
|
|
|
|
# Public Domain
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MASTER_SITES = http://www.apl385.com/fonts/
|
|
|
|
NO_BUILD = Yes
|
|
NO_TEST = Yes
|
|
PKG_ARCH = *
|
|
|
|
FONTSDIR = ${PREFIX}/share/fonts/apl
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${FONTSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/Apl385.ttf ${FONTSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/APL333.ttf ${FONTSDIR}/Apl333.ttf
|
|
|
|
.include <bsd.port.mk>
|