star-build

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

commit 6a99d7acfd723e2f9f460fdf0b533f116238f5f0
parent 5ea63137099bf361f78d901b02d58ffe9848634f
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 13 May 2025 16:50:38 +0200

Add build script for RSIMD 0.6

Diffstat:
Asrc/sci-libs/rsimd_0.6.sh | 37+++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+), 0 deletions(-)

diff --git a/src/sci-libs/rsimd_0.6.sh b/src/sci-libs/rsimd_0.6.sh @@ -0,0 +1,37 @@ +#!/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" + +. "sci-libs/sleef_3.5.2-r0.sh" +. "sys-libs/rsys_0.15.sh" + +name="rsimd" +tag="0.6" + +if [ -n "${RSIMD_SH}" ]; then + check_conflict "${name}" "${tag}" "${RSIMD_SH}" +else + export RSIMD_SH="${tag}" + + url="$\(REPO_VAPLV\)/rsimd.git" + dep="rsys sleef" + opt="BUILD_TYPE=$\(BUILD_TYPE\) LIB_TYPE=$\(LIB_TYPE\)" + git_repo +fi