package-linux.sh 738 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. # Install the python build artifacts
  7. cp -r temp/build/python/include $TARGET_INSTALL_ROOT
  8. cp -r temp/build/python/bin $TARGET_INSTALL_ROOT
  9. cp -r temp/build/python/lib $TARGET_INSTALL_ROOT
  10. cp -r temp/build/python/share $TARGET_INSTALL_ROOT
  11. cp temp/build/python/LICENSE $TARGET_INSTALL_ROOT/
  12. cp temp/build/python/LICENSE.OPENSSL $TARGET_INSTALL_ROOT/
  13. # Install additional cmake files
  14. cp linux_x64/python-config-version.cmake $TARGET_INSTALL_ROOT/../
  15. cp linux_x64/python-config.cmake $TARGET_INSTALL_ROOT/../
  16. exit 0