ports/audio/csound/files/custom.py.in
Yuri Victorovich b4340bf78e Move audio/csound6 -> audio/csound
Having the version in its name doesn't make sense because this is a stable package.
2018-11-17 21:07:15 +00:00

12 lines
372 B
Python

# Order is important: place local paths ahead of system paths.
import sys
customCPPPATH = [ '%%LOCALBASE%%/include', '%%PYTHON_INCLUDEDIR%%' ]
customCCFLAGS = [ ]
customCXXFLAGS = [ ]
customLIBS = [ 'intl' ]
customLIBPATH = [ '%%PORTAUDIO_L%%', '%%LOCALBASE%%/lib' ]
customSHLINKFLAGS = [ '%%PORTAUDIO_R%%', '%%PTHREAD_LIBS%%' ]
customSWIGFLAGS = []
platform = 'linux'