- Remove install-script.sh from .gitignore (needed for Docker builds) - Add PREBUILT.md with instructions for pre-built packages - Update install hints to include prebuilt packages option
100 lines
967 B
Text
100 lines
967 B
Text
# Binary executables
|
|
zsvo
|
|
pkg-manager
|
|
|
|
# Build artifacts
|
|
dist/
|
|
release/
|
|
bin/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.out
|
|
*.bin
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Cache directories
|
|
.cache/
|
|
vendor/
|
|
node_modules/
|
|
yay/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.orig
|
|
|
|
# Test coverage
|
|
coverage.txt
|
|
*.coverprofile
|
|
coverage.html
|
|
coverage.out
|
|
|
|
# Go specific
|
|
*.test
|
|
*.prof
|
|
|
|
# Work directories
|
|
/tmp/pkg-work/
|
|
/tmp/zsvo-cache/
|
|
*.pkg.tar.zst
|
|
work/
|
|
packages/
|
|
root/
|
|
build/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Scripts output
|
|
scripts/*.log
|
|
scripts/*.tmp
|
|
|
|
# Build system artifacts
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
Makefile
|
|
*.make
|
|
.ninja/
|
|
.ninja_log
|
|
|
|
# Package manager artifacts
|
|
*.deb
|
|
*.rpm
|
|
*.zip
|
|
*.tar.gz
|
|
*.tar.bz2
|
|
*.tar.xz
|
|
|
|
# Recipes builds
|
|
recipes/*.pkg.tar.*
|
|
recipes/build/
|
|
recipes/dist/
|
|
|
|
# Allow scripts directory
|
|
!scripts/
|
|
!scripts/*.sh
|