23 lines
731 B
Makefile
23 lines
731 B
Makefile
# $NetBSD: options.mk,v 1.2 2015/12/29 04:54:36 dholland Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.freeswitch
|
|
PKG_SUPPORTED_OPTIONS= freeswitch-08k freeswitch-16k freeswitch-32k freeswitch-48k
|
|
PKG_SUGGESTED_OPTIONS= freeswitch-08k freeswitch-16k
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-08k)
|
|
DISTFILES+= freeswitch-sounds-fr-ca-june-8000-${VERSION}.tar.gz
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-16k)
|
|
DISTFILES+= freeswitch-sounds-fr-ca-june-16000-${VERSION}.tar.gz
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-32k)
|
|
DISTFILES+= freeswitch-sounds-fr-ca-june-32000-${VERSION}.tar.gz
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mfreeswitch-48k)
|
|
DISTFILES+= freeswitch-sounds-fr-ca-june-48000-${VERSION}.tar.gz
|
|
.endif
|