ports/audio/csound6/files/custom.py.in
Danilo Egea Gondolfo 411bac0c65 - Copy from audio/csound and apply the patch. The API of the version 6 of csound is not compatible of version 5.
- Update from 5.18.02 to 6.02
- Add stage support
- Use options helpers

PR:		ports/185351
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2014-01-10 18:05:29 +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'