blob: acd9d9066d2d56b6f97ffcaac111e289905e040d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.5 2020/08/08 19:11:13 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.harfbuzz
PKG_SUPPORTED_OPTIONS+= icu
PKG_SUGGESTED_OPTIONS= icu
.include "../../mk/bsd.options.mk"
PLIST_VARS+= icu
.if !empty(PKG_OPTIONS:Micu)
.include "../../textproc/icu/buildlink3.mk"
MESON_ARGS+= -Dicu=enabled
.else
MESON_ARGS+= -Dicu=disabled
.endif
|