# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. # Disable build id note requirement for now %undefine _missing_build_ids_terminate_build # Force special prefix for Vespa %define _prefix /opt/vespa-deps # Only strip debug info %global _find_debuginfo_opts -g # Version %define ver_major 3 %define ver_minor 0 %define ver_patch 1 %define ver_release 4 Summary: Native part of Java Bindings for llama.cpp Name: vespa-jllama Version: %{ver_major}.%{ver_minor}.%{ver_patch} Release: %{ver_release}%{?dist} License: MIT URL: https://github.com/kherud/ Source0: https://github.com/kherud/java-llama.cpp/archive/refs/tags/v%{version}.tar.gz %if 0%{?amzn2023} BuildRequires: java-17-amazon-corretto-devel BuildRequires: java-17-amazon-corretto BuildRequires: maven-amazon-corretto17 %else %if 0%{?el8} || 0%{?el9} || 0%{?fedora} BuildRequires: java-17-openjdk-devel %endif %if 0%{?el8} BuildRequires: maven >= 1:3.8.0 %else BuildRequires: maven %endif %endif %if 0%{?el8}%{?el9} BuildRequires: gcc-toolset-13-gcc-c++ %define _devtoolset_enable /opt/rh/gcc-toolset-13/enable %endif %if 0%{?fedora} BuildRequires: gcc-c++ %endif BuildRequires: vespa-cmake BuildRequires: make BuildRequires: git %if 0%{?el8} BuildRequires: vespa-openblas-devel >= 0.3.27 Requires: vespa-openblas >= 0.3.27 %else BuildRequires: openblas-devel Requires: openblas-serial %endif %global _vespa_3rdparty_deps_packaging_notice \ See https://github.com/vespa-engine/vespa-3rdparty-deps for details \ about packaging. %description %{_vespa_3rdparty_deps_packaging_notice} %prep %setup -q -n java-llama.cpp-%{version} %build %if 0%{?_devtoolset_enable:1} source %{_devtoolset_enable} || true %endif PATH=%{_prefix}/bin:$PATH mvn compile mkdir build cd build cmake \ -DCMAKE_INSTALL_RPATH=\$ORIGIN \ -DCMAKE_BUILD_WITH_INSTALL_RPATH=true \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DLLAMA_NATIVE=OFF \ -DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS \ .. cmake --build . %install mkdir -p %{buildroot}%{_libdir} cp -p src/main/resources/de/kherud/llama/Linux/*/lib*.so %{buildroot}%{_libdir} %files %license LICENSE.md %{_libdir} %changelog