blob: 1c9d7091504f8f4836de0a247b222bd3a2402ebb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1 2017/02/18 05:48:51 riastradh Exp $
PKG_SUPPORTED_OPTIONS+= python
PKG_OPTIONS_VAR= PKG_OPTIONS.ledger
PLIST_VARS+= python
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mpython)
CMAKE_ARGS+= -DUSE_PYTHON:BOOL=TRUE
PLIST.python= yes
PLIST_SUBST+= PYSITELIB=${PYSITELIB:Q}
.include "../../devel/py-boost/buildlink3.mk"
.endif
|