blend/blend.install

19 lines
307 B
Text
Raw Normal View History

2023-02-11 06:03:29 -06:00
#!/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: