- Strip README to essentials with wiki references only - Remove non-existent API docs and troubleshooting links - Focus on quick start and actual integrations (merkwerk) - Remove FreeBSD support from all installation scripts - Clean up platform detection logic in scripts - Maintain OpenBSD and Linux support only Reduces maintenance burden and aligns with actual project scope.
39 lines
941 B
Bash
Executable file
39 lines
941 B
Bash
Executable file
#!/bin/sh
|
|
# scripts/sync-files.sh - Copy furt source files to installation directory
|
|
|
|
set -e
|
|
|
|
# Check if we're in a furt source directory
|
|
if [ ! -f "src/main.lua" ]; then
|
|
echo "Error: Not in furt source directory (src/main.lua not found)"
|
|
exit 1
|
|
fi
|
|
|
|
# Target directory
|
|
TARGET="/usr/local/share/furt"
|
|
|
|
echo "Copying furt files to $TARGET..."
|
|
|
|
# Copy main directories
|
|
cp -r src/ "$TARGET/"
|
|
cp -r config/ "$TARGET/"
|
|
cp -r scripts/ "$TARGET/"
|
|
cp -r integrations/ "$TARGET/"
|
|
|
|
# Copy version files for merkwerk integration
|
|
[ -f "VERSION" ] && cp VERSION "$TARGET/"
|
|
[ -f ".version_history" ] && cp .version_history "$TARGET/"
|
|
|
|
# Set proper permissions based on operating system
|
|
if [ "$(uname)" = "OpenBSD" ]; then
|
|
chown -R root:wheel "$TARGET"
|
|
else
|
|
chown -R root:root "$TARGET"
|
|
fi
|
|
|
|
chmod -R 644 "$TARGET"
|
|
find "$TARGET" -type d -exec chmod 755 {} \;
|
|
chmod +x "$TARGET/scripts/start.sh"
|
|
|
|
echo "Files synced successfully to $TARGET"
|
|
|