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.
|
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
|
#!/usr/bin/env bash
|
||||||
|
# Fast Installer - For GNU+Linux
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
echo "🔧 Installing zupt..."
|
echo "🔧 Installing zupt..."
|
||||||
|
|
||||||
# Create temp directory
|
# Create temporary directory
|
||||||
TMP_DIR=$(mktemp -d)
|
TMP_DIR=$(mktemp -d)
|
||||||
|
|
||||||
# Clone repo
|
# Clone repo
|
||||||
|
|
@ -17,8 +17,8 @@ cd "$TMP_DIR/zupt"
|
||||||
make clean
|
make clean
|
||||||
make
|
make
|
||||||
|
|
||||||
# Install
|
# Install safely with proper permissions
|
||||||
sudo cp zupt /usr/local/bin/
|
sudo install -m 755 zupt /usr/local/bin/
|
||||||
|
|
||||||
echo "✅ Installed to /usr/local/bin/zupt"
|
echo "✅ Installed to /usr/local/bin/zupt"
|
||||||
|
|
||||||
|
|
|
||||||
BIN
zupt
BIN
zupt
Binary file not shown.
Loading…
Reference in a new issue