commit c8ccda4d3bf2804524ddc10bfff8c402757763dc parent 9a37aa0995a31423de90e3cbdbebcfd778a63e78 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Tue, 9 Jun 2026 15:15:28 +0200 Add the build script for Star-Line 0.0 Diffstat:
| A | src/rad-libs/star-line_0.0.sh | | | 40 | ++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 40 insertions(+), 0 deletions(-)
diff --git a/src/rad-libs/star-line_0.0.sh b/src/rad-libs/star-line_0.0.sh @@ -0,0 +1,40 @@ +#!/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" + +. "rad-libs/star-blackbody_0.0.sh" +. "rad-libs/star-hitran_0.0.sh" +. "rad-libs/lblu_0.1.sh" +. "sci-libs/star-sp_0.15.sh" +. "sys-libs/rsys_0.15.sh" + +name="star-line" +tag="0.0" + +if [ -n "${STAR_LINE_SH}" ]; then + check_conflict "${name}" "${tag}" "${STAR_LINE_SH}" +else + export STAR_LINE_SH="${tag}" + + url="$\(REPO\)/star-line.git" + dep="lblu rsys star-blackbody star-hitran star-sp" + opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)" + git_repo +fi