feat: basalt dependencies and dummy build script

This commit is contained in:
Gabriele Musco 2023-06-18 17:31:28 +02:00
commit d1eadcd912
No known key found for this signature in database
GPG key ID: 1068D795C80E51DE
7 changed files with 132 additions and 4 deletions

21
scripts/build_basalt.sh Normal file
View file

@ -0,0 +1,21 @@
#!/bin/bash
set -ev
echo "Basalt is currently unsupported"
exit 1
#
# REPO_DIR=$1
#
# PREFIX=$2
#
# if [[ -z $REPO_DIR ]] || [[ -z $PREFIX ]]; then
# echo "Usage: $0 REPO_DIR PREFIX"
# exit 1
# fi
#
# "$(dirname -- "$0")/_clone_or_pull.sh" "https://github.com/cntools/libsurvive" "$REPO_DIR"
#
# cd "$REPO_DIR"
# mkdir -p build
# cd build

View file

@ -1,4 +1,5 @@
install_data('_clone_or_pull.sh', install_dir: pkgdatadir / 'scripts')
install_data('build_basalt.sh', install_dir: pkgdatadir / 'scripts')
install_data('build_libsurvive.sh', install_dir: pkgdatadir / 'scripts')
install_data('build_monado.sh', install_dir: pkgdatadir / 'scripts')
install_data('build_opencomposite.sh', install_dir: pkgdatadir / 'scripts')