diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-01 22:56:07 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-01 22:58:53 +0200 |
| commit | 1045963959ddfb697898fa90476f837aae4e2881 (patch) | |
| tree | f4f93fcd99ea0f2dfa1342d79baef10d5f66cc7c /SlackBuilds/llama.cpp-vulkan/doinst.sh | |
| parent | fbb8e8f558f541d6a573105dc369ba7c563f78eb (diff) | |
| download | my-slackbuilds-1045963959ddfb697898fa90476f837aae4e2881.tar.gz my-slackbuilds-1045963959ddfb697898fa90476f837aae4e2881.zip | |
repo: move all packages under SlackBuilds/ subfolder
Reorganize repository by moving all 11 package directories into a new
SlackBuilds/ subfolder. Update README.md, CLAUDE.md, and hooks/post-commit
to reflect the new path structure.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'SlackBuilds/llama.cpp-vulkan/doinst.sh')
| -rw-r--r-- | SlackBuilds/llama.cpp-vulkan/doinst.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/SlackBuilds/llama.cpp-vulkan/doinst.sh b/SlackBuilds/llama.cpp-vulkan/doinst.sh new file mode 100644 index 0000000..0b91476 --- /dev/null +++ b/SlackBuilds/llama.cpp-vulkan/doinst.sh @@ -0,0 +1,27 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +preserve_perms etc/rc.d/rc.llama.cpp.new +config etc/rc.d/rc.llama.cpp.new + |
