star-build

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

commit 9b0c8c07df688a8bdd8ef46ec8f8ba5ef3bf389c
parent 55eea1a9389356e846f478129b6c3ea53399eda8
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 20 May 2026 11:19:40 +0200

Add the build script for star-schiff 0.5

Diffstat:
Asrc/rad-libs/star-schiff_0.5.sh | 39+++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+), 0 deletions(-)

diff --git a/src/rad-libs/star-schiff_0.5.sh b/src/rad-libs/star-schiff_0.5.sh @@ -0,0 +1,39 @@ +#!/bin/sh + +# Copyright (C) 2023-2026 |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" + +. "sci-libs/star-3d_0.10.sh" +. "sci-libs/star-sp_0.15.sh" +. "sys-libs/rsys_0.15.sh" + +name="star-schiff" +tag="0.5" + +if [ -n "${STAR_SCHIFF_SH}" ]; then + check_conflict "${name}" "${tag}" "${STAR_SCHIFF_SH}" +else + export STAR_SCHIFF_SH="${tag}" + + url="$\(REPO\)/star-schiff.git" + dep="star-sp star-3d rsys" + opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\) SIMD_WIDTH=${SIMD_WIDTH}" + + git_repo +fi