forked from openai/retro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34a4402
commit ae62bc0
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |