31 | | PathOption( "PREFIX", "The prefix where ffado will be installed to.", "/usr/local" ), |
---|
32 | | PathOption( "BINDIR", "Overwrite the directory where apps are installed to.", "$PREFIX/bin" ), |
---|
33 | | PathOption( "LIBDIR", "Overwrite the directory where libs are installed to.", "$PREFIX/lib" ), |
---|
34 | | PathOption( "INCLUDEDIR", "Overwrite the directory where headers are installed to.", "$PREFIX/include" ), |
---|
35 | | PathOption( "SHAREDIR", "Overwrite the directory where misc shared files are installed to.", "$PREFIX/share/libffado" ), |
---|
| 31 | PathOption( "PREFIX", "The prefix where ffado will be installed to.", "/usr/local", PathOption.PathAccept ), |
---|
| 32 | PathOption( "BINDIR", "Overwrite the directory where apps are installed to.", "$PREFIX/bin", PathOption.PathAccept ), |
---|
| 33 | PathOption( "LIBDIR", "Overwrite the directory where libs are installed to.", "$PREFIX/lib", PathOption.PathAccept ), |
---|
| 34 | PathOption( "INCLUDEDIR", "Overwrite the directory where headers are installed to.", "$PREFIX/include", PathOption.PathAccept ), |
---|
| 35 | PathOption( "SHAREDIR", "Overwrite the directory where misc shared files are installed to.", "$PREFIX/share/libffado", PathOption.PathAccept ), |
---|