star-build

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

commit 7026f47440c54611c172ef2910f8b4df94cbbb81
parent 3e2bfa74f14b563285aea24c0dab80a9b87ef96d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu,  2 Oct 2025 15:58:40 +0200

Add the build script for rngrd 0.1.1

Diffstat:
Asrc/rad-libs/rngrd_0.1.1.sh | 42++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+), 0 deletions(-)

diff --git a/src/rad-libs/rngrd_0.1.1.sh b/src/rad-libs/rngrd_0.1.1.sh @@ -0,0 +1,42 @@ +#!/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/mrumtl_0.2.sh" +. "rad-libs/star-sf_0.10.sh" +. "sci-libs/star-3d_0.10.sh" +. "sys-libs/rsys_0.15.sh" + +name="rngrd" +tag="0.1.1" + +if [ -n "${RNGRD_SH}" ]; then + check_conflict "${name}" "${tag}" "${RNGRD_SH}" +else + export RNGRD_SH="${tag}" + + url="$\(REPO\)/rngrd.git" + dep="mrumtl rnsl rsys star-3d star-buffer star-mesh star-sf" + opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)" + git_repo +fi