| 47 | | PathOption( "PREFIX", "The prefix where ffado will be installed to.", "/usr/local", PathOption.PathAccept ), |
|---|
| 48 | | PathOption( "BINDIR", "Overwrite the directory where apps are installed to.", "$PREFIX/bin", PathOption.PathAccept ), |
|---|
| 49 | | PathOption( "LIBDIR", "Overwrite the directory where libs are installed to.", "$PREFIX/lib", PathOption.PathAccept ), |
|---|
| 50 | | PathOption( "INCLUDEDIR", "Overwrite the directory where headers are installed to.", "$PREFIX/include", PathOption.PathAccept ), |
|---|
| 51 | | PathOption( "SHAREDIR", "Overwrite the directory where misc shared files are installed to.", "$PREFIX/share/libffado", PathOption.PathAccept ), |
|---|
| | 47 | PathOption( "PREFIX", "The prefix which will be used in the build.", "/usr/local", PathOption.PathAccept ), |
|---|
| | 48 | PathOption( "BINDIR", "Path used for substitutions in the build.", "$PREFIX/bin", PathOption.PathAccept ), |
|---|
| | 49 | PathOption( "LIBDIR", "Path used for substitutions in the build.", "$PREFIX/lib", PathOption.PathAccept ), |
|---|
| | 50 | PathOption( "INCLUDEDIR", "Path used for substitutions in the build.", "$PREFIX/include", PathOption.PathAccept ), |
|---|
| | 51 | PathOption( "SHAREDIR", "Path used for substitutions in the build.", "$PREFIX/share/libffado", PathOption.PathAccept ), |
|---|
| | 52 | PathOption( "prefix", "The prefix where ffado will be installed to.", "/usr", PathOption.PathAccept ), |
|---|
| | 53 | PathOption( "bindir", "Overwrite the directory where apps are installed to.", "$prefix/bin", PathOption.PathAccept ), |
|---|
| | 54 | PathOption( "libdir", "Overwrite the directory where libs are installed to.", "$prefix/lib", PathOption.PathAccept ), |
|---|
| | 55 | PathOption( "includedir", "Overwrite the directory where headers are installed to.", "$prefix/include", PathOption.PathAccept ), |
|---|
| | 56 | PathOption( "sharedir", "Overwrite the directory where misc shared files are installed to.", "$prefix/share/libffado", PathOption.PathAccept ), |
|---|
| 337 | | env['bindir'] = Template( env.destdir + env['BINDIR'] ).safe_substitute( env ) |
|---|
| 338 | | env['libdir'] = Template( env.destdir + env['LIBDIR'] ).safe_substitute( env ) |
|---|
| 339 | | env['includedir'] = Template( env.destdir + env['INCLUDEDIR'] ).safe_substitute( env ) |
|---|
| 340 | | env['sharedir'] = Template( env.destdir + env['SHAREDIR'] ).safe_substitute( env ) |
|---|
| | 342 | env['bindir'] = Template( env.destdir + env['bindir'] ).safe_substitute( env ) |
|---|
| | 343 | env['libdir'] = Template( env.destdir + env['libdir'] ).safe_substitute( env ) |
|---|
| | 344 | env['includedir'] = Template( env.destdir + env['includedir'] ).safe_substitute( env ) |
|---|
| | 345 | env['sharedir'] = Template( env.destdir + env['sharedir'] ).safe_substitute( env ) |
|---|