RKNnoVPN/Makefile
loop-uh 76ffdb1966 Initial commit: PrivStack v1.0.0
VPN-invisible transparent proxy for rooted Android.
No VPN, no TUN, no icon — uses tproxy+iptables at kernel level.

Components:
- Magisk module: shell scripts + Go daemon (privd/privctl)
- Android APK: Kotlin + Jetpack Compose controller (no INTERNET permission)
- CI/CD: GitHub Actions auto-build + release

Architecture verified against RKNHardering → NOT_DETECTED.
Based on 31 research agents + 10 security audits + 10 verification passes.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 15:32:59 +03:00

71 lines
2.5 KiB
Makefile

# PrivStack — Local Build Commands
# Requires: Go 1.22+, Android SDK, JDK 17
SINGBOX_VERSION := 1.11.0
VERSION := $(shell git describe --tags --always 2>/dev/null || echo "dev")
OUT_DIR := out
MODULE_DIR := module
.PHONY: all daemon apk module clean
all: daemon singbox module apk
@echo "Build complete. Artifacts in $(OUT_DIR)/"
# === Go Daemon (arm64) ===
daemon:
@echo "=== Building daemon (arm64) ==="
@mkdir -p $(OUT_DIR)
cd daemon && CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build \
-ldflags="-s -w -X main.Version=$(VERSION)" \
-o ../$(OUT_DIR)/privd ./cmd/privd
cd daemon && CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build \
-ldflags="-s -w -X main.Version=$(VERSION)" \
-o ../$(OUT_DIR)/privctl ./cmd/privctl
@echo " -> $(OUT_DIR)/privd, $(OUT_DIR)/privctl"
# === Download sing-box ===
singbox:
@echo "=== Downloading sing-box v$(SINGBOX_VERSION) ==="
@mkdir -p $(OUT_DIR)
curl -fSL "https://github.com/SagerNet/sing-box/releases/download/v$(SINGBOX_VERSION)/sing-box-$(SINGBOX_VERSION)-linux-arm64.tar.gz" \
-o /tmp/singbox.tar.gz
tar xzf /tmp/singbox.tar.gz -C /tmp/
cp /tmp/sing-box-$(SINGBOX_VERSION)-linux-arm64/sing-box $(OUT_DIR)/sing-box
chmod 755 $(OUT_DIR)/sing-box
@echo " -> $(OUT_DIR)/sing-box"
# === Magisk Module ZIP ===
module: daemon singbox
@echo "=== Building Magisk module ZIP ==="
@mkdir -p $(MODULE_DIR)/binaries/arm64
cp $(OUT_DIR)/privd $(OUT_DIR)/privctl $(OUT_DIR)/sing-box $(MODULE_DIR)/binaries/arm64/
chmod 755 $(MODULE_DIR)/binaries/arm64/*
sed -i "s/^version=.*/version=$(VERSION)/" $(MODULE_DIR)/module.prop
cd $(MODULE_DIR) && zip -r ../$(OUT_DIR)/privstack-$(VERSION)-module.zip . \
-x "*.git*" "*.DS_Store"
@echo " -> $(OUT_DIR)/privstack-$(VERSION)-module.zip"
# === Android APK ===
apk:
@echo "=== Building APK ==="
cd app && ./gradlew assembleRelease --no-daemon
cp app/app/build/outputs/apk/release/*.apk $(OUT_DIR)/privstack-$(VERSION)-panel.apk 2>/dev/null || \
(cd app && ./gradlew assembleDebug --no-daemon && \
cp app/build/outputs/apk/debug/*.apk ../$(OUT_DIR)/privstack-$(VERSION)-panel.apk)
@echo " -> $(OUT_DIR)/privstack-$(VERSION)-panel.apk"
# === Test daemon (host arch, for development) ===
daemon-host:
@echo "=== Building daemon (host arch, for testing) ==="
cd daemon && go build -o ../$(OUT_DIR)/privd-host ./cmd/privd
cd daemon && go build -o ../$(OUT_DIR)/privctl-host ./cmd/privctl
# === Go tests ===
test:
cd daemon && go test ./...
# === Clean ===
clean:
rm -rf $(OUT_DIR)
rm -rf $(MODULE_DIR)/binaries
cd app && ./gradlew clean 2>/dev/null || true