2022-11-11 09:17:06 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
set -eu
|
2022-11-12 22:19:09 +00:00
|
|
|
cd -- "$(dirname "$0")/.."
|
|
|
|
|
. ./scripts/lib.sh
|
2022-11-11 09:17:06 +00:00
|
|
|
|
|
|
|
|
main() {
|
2022-12-06 05:51:46 +00:00
|
|
|
ensure_prefix_sh_c
|
2022-12-01 20:26:32 +00:00
|
|
|
"$sh_c" mkdir -p "$PREFIX/bin"
|
|
|
|
|
"$sh_c" install ./bin/d2 "$PREFIX/bin/d2"
|
|
|
|
|
"$sh_c" mkdir -p "$PREFIX/share/man/man1"
|
|
|
|
|
"$sh_c" install ./man/d2.1 "$PREFIX/share/man/man1"
|
2022-11-11 09:17:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main "$@"
|