blend/blend.install
2023-02-11 17:33:29 +05:30

18 lines
307 B
Bash

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0
build() {
add_module overlay
add_binary bash
add_binary tar
add_runscript
}
help() {
cat <<HELPEOF
This provides a support for mounting the blend /usr overlay. No
configuration is needed.
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: