aports/testing/llama.cpp/llama.cpp.pre-install
Hugo Osvaldo Barrera beb54cadeb testing/llama.cpp: new aport
The standalone ggml library does not have a matching API and cannot be
used to build llama.cpp. It's pointless to package the vendored version
separately, since there's no other project which can rely on it.

convert_hf_to_gguf requires several missing depends, so is omitted for
now.
2026-03-20 15:02:47 +00:00

8 lines
182 B
Bash

#!/bin/sh
addgroup -S llama-server 2>/dev/null
adduser -S -D -H -h /var/lib/llama-server -s /sbin/nologin -G llama-server \
-g "llama-server user" llama-server 2>/dev/null
exit 0