blob: 8d2f633b42dddd45828199ebe1f31d34c52dcad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: buildlink3.mk,v 1.1 2014/09/05 10:13:21 fhajny Exp $
BUILDLINK_TREE+= sphinxbase
.if !defined(SPHINXBASE_BUILDLINK3_MK)
SPHINXBASE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.sphinxbase+= sphinxbase>=0.8
BUILDLINK_ABI_DEPENDS.sphinxbase+= sphinxbase>=0.8
BUILDLINK_PKGSRCDIR.sphinxbase?= ../../audio/sphinxbase
BUILDLINK_INCDIRS.sphinxbase+= include/sphinxbase
pkgbase:= sphinxbase
.include "../../mk/pkg-build-options.mk"
.if !empty(PKG_BUILD_OPTIONS.sphinxbase:Msamplerate)
. include "../../audio/libsamplerate/buildlink3.mk"
.endif
.if !empty(PKG_BUILD_OPTIONS.sphinxbase:Msndfile)
. include "../../audio/libsndfile/buildlink3.mk"
.endif
.endif
BUILDLINK_TREE+= -sphinxbase
|