commit 3e2bfa74f14b563285aea24c0dab80a9b87ef96d parent dcd06e8359baffc3e36bdc39f5591fda559b242f Author: Vincent Forest <vincent.forest@meso-star.com> Date: Thu, 2 Oct 2025 15:58:02 +0200 Add the build script for rnatm 0.2 Diffstat:
| A | src/rad-libs/rnatm_0.2.sh | | | 46 | ++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 46 insertions(+), 0 deletions(-)
diff --git a/src/rad-libs/rnatm_0.2.sh b/src/rad-libs/rnatm_0.2.sh @@ -0,0 +1,46 @@ +#!/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" + +. "dev-libs/rnsl_0.1.sh" +. "dev-libs/star-buffer_0.1.sh" +. "cad-libs/star-mesh_0.1.sh" +. "rad-libs/rnsf_0.1.sh" +. "rad-libs/star-aerosol_0.1.sh" +. "rad-libs/star-ck_0.1.sh" +. "rad-libs/star-sf_0.10.sh" +. "sci-libs/star-uvm_0.3.1.sh" +. "sci-libs/star-vx_0.3.1.sh" +. "sys-libs/rsys_0.15.sh" + +name="rnatm" +tag="0.2" + +if [ -n "${RNATM_SH}" ]; then + check_conflict "${name}" "${tag}" "${RNATM_SH}" +else + export RNATM_SH="${tag}" + + url="$\(REPO\)/rnatm.git" + dep="rnsf rnsl rsys star-aerosol star-buffer star-ck star-mesh" + dep="${dep} star-sf star-uvm star-vx" + opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)" + git_repo +fi