mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 13:29:24 -04:00
- Update from 5.18.02 to 6.02 - Add stage support - Use options helpers PR: ports/185351 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
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'
|