-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-windows.sh
More file actions
executable file
·55 lines (42 loc) · 1.41 KB
/
package-windows.sh
File metadata and controls
executable file
·55 lines (42 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
# Package SecureVault Browser for Windows
echo "=================================================="
echo "SecureVault Browser - Windows Packaging"
echo "=================================================="
if [ ! -d "src/out/SecureVault" ]; then
echo "Error: Build output not found. Run build-windows.sh first"
exit 1
fi
cd src/out/SecureVault
echo "Creating Windows package..."
# Create package directory
mkdir -p ../../../package/SecureVault
# Copy files
cp chrome.exe ../../../package/SecureVault/SecureVault.exe
cp *.dll ../../../package/SecureVault/ 2>/dev/null || true
cp *.pak ../../../package/SecureVault/
cp -r locales ../../../package/SecureVault/
cp -r resources ../../../package/SecureVault/ 2>/dev/null || true
cd ../../../
# Create README for package
cat > package/SecureVault/README.txt << 'EOF'
SecureVault Browser - Windows
To run: Double-click SecureVault.exe
Privacy-focused browser with:
- Zero telemetry
- DNS-over-HTTPS by default
- WebRTC protection
- Third-party cookie blocking
- No Google services
For more information: https://github.com/your-repo/securevault-browser
EOF
# Create ZIP archive
cd package
zip -r ../securevault-browser-windows-x64.zip SecureVault/
cd ..
echo ""
echo "=================================================="
echo "Windows package created!"
echo "=================================================="
echo "Output: securevault-browser-windows-x64.zip"
echo ""