Skip to content

Commit

Permalink
Import initial tooling framework
Browse files Browse the repository at this point in the history
  • Loading branch information
squishyhuman committed Sep 30, 2023
1 parent 34a4402 commit ae62bc0
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions tools/build-depends.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
#!/bin/bash
################################################################################
#
# Copyright (C) 2023 retro.ai
# This file is part of retro-dapp - https://github.com/RetroAI/retro-dapp
#
# SPDX-License-Identifier: Apache-2.0
# See the file LICENSE for more information.
#
################################################################################

#
# Build script for dependencies
#

# Enable strict mode
set -o errexit
set -o pipefail
set -o nounset

#
# Environment paths
#

# Get the absolute path to this script
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

# Directory of the dependency build definitions
DEPENDS_DIR="${SCRIPT_DIR}/depends"

# Directory of the downloaded repos
REPO_DIR="${SCRIPT_DIR}/repos"

# Root project directory
ROOT_DIR="${SCRIPT_DIR}/.."

# Ensure directories exist
mkdir -p "${REPO_DIR}"

#
# Import dependencies
#

# TODO

#
# Checkout dependencies
#

# TODO

#
# Patch dependencies
#

# TODO

#
# Build dependencies
#

# TODO

#
# Install dependencies
#

# TODO

0 comments on commit ae62bc0

Please sign in to comment.