mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
12 lines
372 B
Python
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'
|