forked from security/hakurei
12 lines
406 B
Bash
Executable File
12 lines
406 B
Bash
Executable File
#!/bin/sh
|
|
cd "$(dirname -- "$0")" || exit 1
|
|
|
|
install -vDm0755 "bin/hakurei" "${DESTDIR}/usr/bin/hakurei"
|
|
install -vDm0755 "bin/sharefs" "${DESTDIR}/usr/bin/sharefs"
|
|
|
|
install -vDm4511 "bin/hsu" "${DESTDIR}/usr/bin/hsu"
|
|
if [ ! -f "${DESTDIR}/etc/hsurc" ]; then
|
|
install -vDm0400 "hsurc.default" "${DESTDIR}/etc/hsurc"
|
|
fi
|
|
|
|
install -vDm0644 "comp/_hakurei" "${DESTDIR}/usr/share/zsh/site-functions/_hakurei" |