The new structure is required for switching to TTC fonts, but it will also make adding different Iosevka variants easier. bentely@ convinced me to drop the -fonts suffix on the PKGNAME as it's redundant and isn't part of the project's actual name. OK bentley@, thanks!
21 lines
751 B
Makefile
21 lines
751 B
Makefile
# $OpenBSD: Makefile,v 1.2 2020/08/21 13:53:30 edd Exp $
|
|
|
|
# There are many different variants of Iosevka. We only package a subset of
|
|
# them, but the layout of the port is designed for more to be added if need be.
|
|
#
|
|
# Each SUBDIR is one "variant" and because we use the TTC fonts (which allow
|
|
# glyphs to be shared, thus saving space) each variant contains all of the
|
|
# various "spacing variants".
|
|
#
|
|
# For details on variants and spacing variants, see:
|
|
# https://github.com/be5invis/Iosevka/releases
|
|
#
|
|
# When adding a new variant, please use a SUBDIR whose name matches the suffix
|
|
# on the DISTFILE, e.g. 'SUBDIR += slab' for 'ttc-iosevka-slab-x.y.z.zip'.
|
|
# Similarly for the PKGNAME suffix.
|
|
|
|
SUBDIR =
|
|
SUBDIR += default
|
|
|
|
.include <bsd.port.subdir.mk>
|