build-linux-aarch64.sh 527 B

123456789101112131415161718
  1. #!/bin/bash
  2. #
  3. # Copyright (c) Contributors to the Open 3D Engine Project.
  4. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. #
  6. # SPDX-License-Identifier: Apache-2.0 OR MIT
  7. #
  8. # TEMP_FOLDER and TARGET_INSTALL_ROOT get set from the pull_and_build_from_git.py script
  9. TIFF_PACKAGE=tiff-4.2.0.15-rev3-linux-aarch64
  10. ZLIB_PACKAGE=zlib-1.2.11-rev5-linux-aarch64
  11. OPENSSL_PACKAGE=OpenSSL-1.1.1t-rev1-linux-aarch64
  12. ./build-linux.sh $TIFF_PACKAGE $ZLIB_PACKAGE $OPENSSL_PACKAGE
  13. exit $?