star-build

Automation tool for project installation
git clone git://git.meso-star.fr/star-build.git
Log | Files | Refs | README | LICENSE

commit f06e8ad9122e6cf5ef695379fee6189faea22038
parent 8605aa5c63242e47694e9098c80e5bebc18dcea6
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 23 May 2025 15:11:49 +0200

Add the Star-VX 0.3.1 build script

It replaces the build script of version 0.3, which is therefore removed.

Diffstat:
Msrc/dev-libs/star-engine_0.15.sh | 2+-
Msrc/rad-apps/htrdr_0.10.sh | 2+-
Msrc/rad-apps/htrdr_0.11.sh | 2+-
Msrc/rad-libs/atrstm_0.1.1.sh | 2+-
Msrc/rad-libs/htsky_0.3.1.sh | 2+-
Msrc/rad-libs/rnatm_0.1.sh | 2+-
Asrc/sci-libs/star-vx_0.3.1.sh | 35+++++++++++++++++++++++++++++++++++
Dsrc/sci-libs/star-vx_0.3.sh | 35-----------------------------------
8 files changed, 41 insertions(+), 41 deletions(-)

diff --git a/src/dev-libs/star-engine_0.15.sh b/src/dev-libs/star-engine_0.15.sh @@ -39,7 +39,7 @@ export STAR_ENGINE_SH="${version}" . "sci-libs/star-mc_0.6.sh" . "sci-libs/star-sp_0.14.sh" . "sci-libs/star-uvm_0.3.1.sh" -. "sci-libs/star-vx_0.3.sh" +. "sci-libs/star-vx_0.3.1.sh" # shellcheck disable=SC2310 if use_simd; then diff --git a/src/rad-apps/htrdr_0.10.sh b/src/rad-apps/htrdr_0.10.sh @@ -26,7 +26,7 @@ set -e . "sci-libs/star-3d_0.10.sh" . "sci-libs/star-camera_0.2.sh" . "sci-libs/star-sp_0.14.sh" -. "sci-libs/star-vx_0.3.sh" +. "sci-libs/star-vx_0.3.1.sh" . "sys-libs/rsys_0.15.sh" [ -z "${ATMOSPHERE}" ] && ATMOSPHERE=ENABLE diff --git a/src/rad-apps/htrdr_0.11.sh b/src/rad-apps/htrdr_0.11.sh @@ -26,7 +26,7 @@ set -e . "sci-libs/star-3d_0.10.sh" . "sci-libs/star-camera_0.2.sh" . "sci-libs/star-sp_0.14.sh" -. "sci-libs/star-vx_0.3.sh" +. "sci-libs/star-vx_0.3.1.sh" . "sys-libs/rsys_0.15.sh" [ -z "${ATMOSPHERE}" ] && ATMOSPHERE=ENABLE diff --git a/src/rad-libs/atrstm_0.1.1.sh b/src/rad-libs/atrstm_0.1.1.sh @@ -23,7 +23,7 @@ set -e . "rad-libs/atrri_0.1.sh" . "rad-libs/atrtp_0.1.sh" . "sci-libs/star-uvm_0.3.1.sh" -. "sci-libs/star-vx_0.3.sh" +. "sci-libs/star-vx_0.3.1.sh" . "sys-libs/rsys_0.15.sh" # shellcheck disable=SC2310 diff --git a/src/rad-libs/htsky_0.3.1.sh b/src/rad-libs/htsky_0.3.1.sh @@ -22,7 +22,7 @@ set -e . "rad-libs/htcp_0.1.sh" . "rad-libs/htgop_0.2.sh" . "rad-libs/htmie_0.1.sh" -. "sci-libs/star-vx_0.3.sh" +. "sci-libs/star-vx_0.3.1.sh" . "sys-libs/rsys_0.15.sh" name="htsky" diff --git a/src/rad-libs/rnatm_0.1.sh b/src/rad-libs/rnatm_0.1.sh @@ -27,7 +27,7 @@ set -e . "rad-libs/star-ck_0.1.sh" . "rad-libs/star-sf_0.9.sh" . "sci-libs/star-uvm_0.3.1.sh" -. "sci-libs/star-vx_0.3.sh" +. "sci-libs/star-vx_0.3.1.sh" . "sys-libs/rsys_0.15.sh" name="rnatm" diff --git a/src/sci-libs/star-vx_0.3.1.sh b/src/sci-libs/star-vx_0.3.1.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +# Copyright (C) 2023-2025 |Méso|Star> (contact@meso-star.com) +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +set -e + +. "misc/build.sh" +. "sys-libs/rsys_0.15.sh" + +name="star-vx" +tag="0.3.1" + +if [ -n "${STAR_VX_SH}" ]; then + check_conflict "${name}" "${tag}" "${STAR_VX_SH}" +else + export STAR_VX_SH="${tag}" + + url="$\(REPO\)/star-vx.git" + dep="rsys" + opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)" + git_repo +fi diff --git a/src/sci-libs/star-vx_0.3.sh b/src/sci-libs/star-vx_0.3.sh @@ -1,35 +0,0 @@ -#!/bin/sh - -# Copyright (C) 2023-2025 |Méso|Star> (contact@meso-star.com) -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. - -set -e - -. "misc/build.sh" -. "sys-libs/rsys_0.15.sh" - -name="star-vx" -tag="0.3" - -if [ -n "${STAR_VX_SH}" ]; then - check_conflict "${name}" "${tag}" "${STAR_VX_SH}" -else - export STAR_VX_SH="${tag}" - - url="$\(REPO\)/star-vx.git" - dep="rsys" - opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)" - git_repo -fi