Updated: Install.sh
This commit is contained in:
parent
d0dd63370c
commit
f3e679ef53
3 changed files with 5 additions and 4 deletions
|
|
@ -6,6 +6,7 @@
|
|||

|
||||

|
||||

|
||||

|
||||
|
||||
Zupt compresses and encrypts backup archives. LZ77+Huffman compression, AES-256-CTR + HMAC-SHA256 per-block authentication, multi-threaded, and optional ML-KEM-768 + X25519 post-quantum hybrid encryption. Pure C11, zero dependencies, ~5,000 lines.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
# Fast Installer - For GNU+Linux
|
||||
#!/usr/bin/env bash
|
||||
# Fast Installer - For GNU+Linux
|
||||
|
||||
set -e
|
||||
|
||||
echo "🔧 Installing zupt..."
|
||||
|
||||
# Create temp directory
|
||||
# Create temporary directory
|
||||
TMP_DIR=$(mktemp -d)
|
||||
|
||||
# Clone repo
|
||||
|
|
@ -17,8 +17,8 @@ cd "$TMP_DIR/zupt"
|
|||
make clean
|
||||
make
|
||||
|
||||
# Install
|
||||
sudo cp zupt /usr/local/bin/
|
||||
# Install safely with proper permissions
|
||||
sudo install -m 755 zupt /usr/local/bin/
|
||||
|
||||
echo "✅ Installed to /usr/local/bin/zupt"
|
||||
|
||||
|
|
|
|||
BIN
zupt
BIN
zupt
Binary file not shown.
Loading…
Reference in a new issue